2023-07-25 16:55:35 +00:00
|
|
|
#!/bin/pwsh
|
|
|
|
param($context)
|
|
|
|
|
2024-08-07 19:05:32 +00:00
|
|
|
. "$PSScriptRoot/../../../Common/Scripts/Context.ps1";
|
2023-07-25 16:55:35 +00:00
|
|
|
[Context] $context = $context;
|
|
|
|
|
|
|
|
choco install -y thunderbird --params "/NoTaskbarShortcut /NoDesktopShortcut";
|
2023-07-25 22:15:51 +00:00
|
|
|
. "$PSScriptRoot/../../Config/Thunderbird/Install.ps1" $context;
|