diff --git a/scripts/Windows/Collections/Personal.ps1 b/scripts/Windows/Collections/Personal.ps1 index 866b0a14..9c3f9648 100644 --- a/scripts/Windows/Collections/Personal.ps1 +++ b/scripts/Windows/Collections/Personal.ps1 @@ -98,8 +98,9 @@ function Restore-PersonalApps([Context] $context) { inkscape ` krita ` obs-studio ` - openvpn ` - thunderbird; + openvpn; + + . "$PSScriptRoot/../Software/Thunderbird/Install.ps1" $context; $context.RemoveDesktopIcon("GPU-Z*"); $context.RemoveDesktopIcon("WinDirStat*"); diff --git a/scripts/Windows/Software/Thunderbird/Install.ps1 b/scripts/Windows/Software/Thunderbird/Install.ps1 new file mode 100644 index 00000000..a66fdc76 --- /dev/null +++ b/scripts/Windows/Software/Thunderbird/Install.ps1 @@ -0,0 +1,7 @@ +#!/bin/pwsh +param($context) + +. "$PSScriptRoot/../../Scripts/Context.ps1"; +[Context] $context = $context; + +choco install -y thunderbird --params "/NoTaskbarShortcut /NoDesktopShortcut";