#!/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;