PortValhalla/scripts/Windows/Config/Thunderbird/Install.ps1

9 lines
349 B
PowerShell
Raw Normal View History

#!/bin/pwsh
. "$PSScriptRoot/../../Scripts/AppAssociations.ps1";
$applicationName = "Thunderbird";
Write-Host "Configuring Thunderbird";
Write-Information "Making Thunderbird the default Mail program";
Set-DefaultAppAssociation "mailto" "Thunderbird.Url.mailto" $applicationName;
Set-DefaultAppAssociation ".eml" "ThunderbirdEML" $applicationName;