2023-07-24 21:54:05 +00:00
|
|
|
#!/bin/pwsh
|
2023-07-26 15:10:57 +00:00
|
|
|
. "$PSScriptRoot/../../Scripts/AppAssociations.ps1";
|
|
|
|
$applicationName = "Thunderbird";
|
2023-07-24 21:54:05 +00:00
|
|
|
|
2023-07-26 15:10:57 +00:00
|
|
|
Write-Host "Configuring Thunderbird";
|
2023-07-24 21:54:05 +00:00
|
|
|
Write-Information "Making Thunderbird the default Mail program";
|
2023-07-26 15:10:57 +00:00
|
|
|
Set-DefaultAppAssociation "mailto" "Thunderbird.Url.mailto" $applicationName;
|
|
|
|
Set-DefaultAppAssociation ".eml" "ThunderbirdEML" $applicationName;
|