Add a script for installing thunderbird
This commit is contained in:
parent
339ea4f9b7
commit
2ad0149950
2 changed files with 8 additions and 0 deletions
|
@ -100,6 +100,7 @@ function Restore-PersonalApps([Context] $context) {
|
|||
openvpn;
|
||||
|
||||
. "$PSScriptRoot/../Software/WinSCP/Install.ps1" $context;
|
||||
. "$PSScriptRoot/../Software/Thunderbird/Install.ps1" $context;
|
||||
|
||||
$context.RemoveDesktopIcon("GPU-Z*");
|
||||
$context.RemoveDesktopIcon("WinDirStat*");
|
||||
|
|
7
scripts/Windows/Software/Thunderbird/Install.ps1
Normal file
7
scripts/Windows/Software/Thunderbird/Install.ps1
Normal file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/pwsh
|
||||
param($context)
|
||||
|
||||
. "$PSScriptRoot/../../Scripts/Context.ps1";
|
||||
[Context] $context = $context;
|
||||
|
||||
choco install -y thunderbird;
|
Loading…
Reference in a new issue