17 lines
741 B
PowerShell
17 lines
741 B
PowerShell
using namespace Microsoft.Win32;
|
|
|
|
. "$PSScriptRoot/../../Scripts/AppAssociations.ps1";
|
|
. "$PSScriptRoot/../../Scripts/SoftwareManagement.ps1";
|
|
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
|
|
|
|
Start-SoftwareInstaller @args `
|
|
-Installer {
|
|
Install-ChocoPackage thunderbird -ArgumentList "--params", '"/NoTaskbarShortcut /NoDesktopShortcut"';
|
|
} `
|
|
-Configurator {
|
|
Write-Host "Making Thunderbird the default mail program…";
|
|
$applicationName = "Thunderbird";
|
|
Set-DefaultAppAssociation -Identifier "mailto" -ProgId "Thunderbird.Url.mailto" -ApplicationName $applicationName;
|
|
Set-DefaultAppAssociation -Identifier ".eml" -ProgId "ThunderbirdEml" -ApplicationName $applicationName;
|
|
};
|