From e0755d7daa877603c516bbff4b4d280b681441aa Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Wed, 26 Jul 2023 17:07:19 +0200 Subject: [PATCH] Add console output --- scripts/Windows/Config/Firefox/Install.ps1 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/Windows/Config/Firefox/Install.ps1 b/scripts/Windows/Config/Firefox/Install.ps1 index d59a3a11..3bcf686a 100644 --- a/scripts/Windows/Config/Firefox/Install.ps1 +++ b/scripts/Windows/Config/Firefox/Install.ps1 @@ -1,5 +1,7 @@ #!/bin/pwsh . "$PSScriptRoot/../../Scripts/AppAssociations.ps1"; + +Write-Host "Configuring Firefox"; $progIdSuffix = "-308046B0AF4A39CB"; $appName = "Firefox"; @@ -16,6 +18,8 @@ $schemes = @( "https" ); +Write-Information "Making Firefox the default browser"; + foreach ($extension in $extensions) { Set-DefaultAppAssociation $extension "FirefoxHTML$progIdSuffix" $appName; }