Prevent creation of shortcuts for thunderbird

This commit is contained in:
Manuel Thalmann 2023-07-25 18:55:35 +02:00
parent 774cce451a
commit 6a1890efb8
2 changed files with 10 additions and 2 deletions

View file

@ -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*");

View file

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