Seit Version 111 des Microsoft Edge wird oben rechts der neue Bing-Button an gleicher Stelle des Menüs angezeigt. Unter Windows kann die Randleiste, HideFirstRunExperience, ShowAcrobatSubscriptionButton und ShowRecommendationsEnabled in PowerShell im Userkontext selbst konfiguriert werden, unabhängig, ob das Device einer Organisation angehört.
$Path = "HKCU:\Software\Policies\Microsoft\Edge"
if (!(Test-Path $Path)) {
New-Item -Path $Path
}
New-ItemProperty -Path $Path -Name HideFirstRunExperience -PropertyType dword -Value 1 -Force
New-ItemProperty -Path $Path -Name HubsSidebarEnabled -PropertyType dword -Value 0 -Force
New-ItemProperty -Path $Path -Name ShowAcrobatSubscriptionButton -PropertyType dword -Value 0 -Force
New-ItemProperty -Path $Path -Name ShowRecommendationsEnabled -PropertyType dword -Value 0 -Force
Der Hinweis, dass damit der Browser von Ihrer Organisation verwaltet wird, ist ein normales Verhalten. Die konfigurierten Richtlinien können unter edge://policy/ geprüft und neu geladen werden.



Kommentare