Powershell zum Festlegen des Standardbrowsers

Powershell zum Festlegen des Standardbrowsers

Ich habe einen Prozess mit PowerShell erstellt, um Chrome zu installieren. Was ich jetzt tun möchte, ist, dass PowerShell die Registrierung für den Computer ändert und den Standardbrowser auf Chrome ändert.

Ich möchte, dass dies für alle Benutzer und nicht nur für den aktuellen Benutzer durchgeführt wird.
Im Moment habe ich dies

Set-Itemproperty -path HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Associations\UrlAssociations\https\UserChoice -name "ProgId" -value ChromeHTML -force 
Set-Itemproperty -path HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Associations\UrlAssociations\http\UserChoice -name "ProgId" -value ChromeHTML -force

um den Browser als Standard festzulegen, aber es funktioniert nicht.

Antwort1

Ich könnte mir vorstellen, dass Sie das Äquivalent in HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Shell\Associations\UrlAssociations erstellen müssen.

verwandte Informationen