Add console output
This commit is contained in:
parent
4d50f1064a
commit
9b1be73a7a
1 changed files with 4 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
||||||
#!/bin/pwsh
|
#!/bin/pwsh
|
||||||
. "$PSScriptRoot/../../Scripts/AppAssociations.ps1";
|
. "$PSScriptRoot/../../Scripts/AppAssociations.ps1";
|
||||||
|
|
||||||
|
Write-Host "Configuring Firefox";
|
||||||
$progIdSuffix = "-308046B0AF4A39CB";
|
$progIdSuffix = "-308046B0AF4A39CB";
|
||||||
$appName = "Firefox";
|
$appName = "Firefox";
|
||||||
|
|
||||||
|
@ -16,6 +18,8 @@ $schemes = @(
|
||||||
"https"
|
"https"
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Write-Information "Making Firefox the default browser";
|
||||||
|
|
||||||
foreach ($extension in $extensions) {
|
foreach ($extension in $extensions) {
|
||||||
Set-DefaultAppAssociation $extension "FirefoxHTML$progIdSuffix" $appName;
|
Set-DefaultAppAssociation $extension "FirefoxHTML$progIdSuffix" $appName;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue