9 lines
250 B
PowerShell
9 lines
250 B
PowerShell
#!/bin/pwsh
|
|
param($context)
|
|
|
|
. "$PSScriptRoot/../../Scripts/Context.ps1";
|
|
[Context] $context = $context;
|
|
|
|
choco install -y thunderbird --params "/NoTaskbarShortcut /NoDesktopShortcut";
|
|
. "$PSScriptRoot/../../Config/Thunderbird/Install.ps1" $context;
|