2024-08-07 21:53:12 +00:00
|
|
|
param(
|
|
|
|
$Action,
|
|
|
|
[hashtable] $Arguments
|
|
|
|
)
|
|
|
|
|
|
|
|
. "$PSScriptRoot/../../Scripts/AppAssociations.ps1";
|
|
|
|
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
|
|
|
|
|
|
|
|
Start-SoftwareInstaller @PSBoundParameters `
|
|
|
|
-Installer {
|
|
|
|
param(
|
|
|
|
[scriptblock] $Installer
|
|
|
|
)
|
|
|
|
|
|
|
|
Install-ChocoPackage firefox;
|
|
|
|
& $Installer -Action ([InstallerAction]::Configure)
|
|
|
|
} `
|
|
|
|
-Configurator {
|
|
|
|
Write-Host "Making Firefox the default browser…";
|
|
|
|
$progIdSuffix = "-308046B0AF4A39CB";
|
|
|
|
$appName = "Firefox";
|
|
|
|
|
|
|
|
$extensions = @(
|
|
|
|
".htm",
|
|
|
|
".html",
|
|
|
|
".svg",
|
|
|
|
".xht",
|
|
|
|
".xhtml"
|
|
|
|
);
|
|
|
|
|
|
|
|
$schemes = @(
|
|
|
|
"http",
|
|
|
|
"https"
|
|
|
|
);
|
|
|
|
|
|
|
|
foreach ($extension in $extensions) {
|
2024-08-08 12:08:48 +00:00
|
|
|
Set-DefaultAppAssociation -Identifier $extension -ProgId "${appName}HTML$progIdSuffix" -ApplicationName $appName;
|
2024-08-07 21:53:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($scheme in $schemes) {
|
|
|
|
Set-DefaultAppAssociation -Identifier $scheme -ProgId "${appName}URL$progIdSuffix" -ApplicationName $appName;
|
|
|
|
}
|
2024-08-08 00:29:09 +00:00
|
|
|
|
|
|
|
Remove-TaskbarItem "*Firefox*";
|
2024-08-07 21:53:12 +00:00
|
|
|
};
|