Add a script for installing thunderbird

This commit is contained in:
Manuel Thalmann 2023-07-24 23:44:38 +02:00
parent 339ea4f9b7
commit 2ad0149950
2 changed files with 8 additions and 0 deletions

View file

@ -100,6 +100,7 @@ function Restore-PersonalApps([Context] $context) {
openvpn; openvpn;
. "$PSScriptRoot/../Software/WinSCP/Install.ps1" $context; . "$PSScriptRoot/../Software/WinSCP/Install.ps1" $context;
. "$PSScriptRoot/../Software/Thunderbird/Install.ps1" $context;
$context.RemoveDesktopIcon("GPU-Z*"); $context.RemoveDesktopIcon("GPU-Z*");
$context.RemoveDesktopIcon("WinDirStat*"); $context.RemoveDesktopIcon("WinDirStat*");

View file

@ -0,0 +1,7 @@
#!/bin/pwsh
param($context)
. "$PSScriptRoot/../../Scripts/Context.ps1";
[Context] $context = $context;
choco install -y thunderbird;