Prevent creation of shortcuts for thunderbird
This commit is contained in:
parent
f135727dc2
commit
6464f32396
2 changed files with 10 additions and 2 deletions
|
@ -98,8 +98,9 @@ function Restore-PersonalApps([Context] $context) {
|
||||||
inkscape `
|
inkscape `
|
||||||
krita `
|
krita `
|
||||||
obs-studio `
|
obs-studio `
|
||||||
openvpn `
|
openvpn;
|
||||||
thunderbird;
|
|
||||||
|
. "$PSScriptRoot/../Software/Thunderbird/Install.ps1" $context;
|
||||||
|
|
||||||
$context.RemoveDesktopIcon("GPU-Z*");
|
$context.RemoveDesktopIcon("GPU-Z*");
|
||||||
$context.RemoveDesktopIcon("WinDirStat*");
|
$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 --params "/NoTaskbarShortcut /NoDesktopShortcut";
|
Loading…
Reference in a new issue