🔍 Remove Bing from Search Bar
Intune Platform Script · Removes Bing web results from Windows Start menu search via registry
This writes to HKCU — must run as the logged-on user or the key lands in the wrong hive and does nothing.
Script
1
Disable BingSearchEnabled required
Sets BingSearchEnabled to 0 in the registry.
# Disable Bing search in Start menu
Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" -Name "BingSearchEnabled" -Value 0 -Type DWord -Force
Intune Platform Script Settings
Run this script using the logged on credentials
Yes