9 lines
349 B
PowerShell
9 lines
349 B
PowerShell
#!/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;
|