The fix
Disabling Bing integration in search resolves it. You can do this with a single registry change:- Open Registry Editor (
regedit.exe). - Browse to:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search
- Find the BingSearchEnabled DWORD value. If it doesn’t exist, create a new DWORD (32-bit) value with that exact name.
- Set its value to 0.
Deploying at scale
If you need to apply this across multiple machines rather than by hand, the same key/value can be pushed via Group Policy Preferences (registry item) or a simple PowerShell one-liner run under the user context:New-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search" -Name "BingSearchEnabled" -PropertyType DWord -Value 0 -ForceBecause this is a per-user (HKCU) setting, it needs to run in the context of each user profile rather than as a machine-wide HKLM change.
The Official Way to Do This on Current Windows (Updated for 2026)
TheBingSearchEnabled registry value in this guide was always a community-discovered tweak rather than something Microsoft ever officially documented, and its exact behaviour on current Windows 10/11 builds isn’t something we can confirm with certainty — it’s worth testing on a single machine before rolling it out further today.
Microsoft’s own supported mechanism for this is a Group Policy/Intune setting called “Don’t search the web or display web results in Search” (backed by the DoNotUseWebResults policy CSP, and the machine-wide registry value ConnectedSearchUseWeb under HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search, set to 0 to disable). It’s confirmed current on Windows 10 (1803 and later) and Windows 11, including 24H2/25H2 — but it’s only available on Enterprise, Education, and IoT Enterprise editions, not Pro or Home, and it’s an HKLM machine-wide policy rather than the original fix’s per-user HKCU value. For a single Pro/Home machine, the original BingSearchEnabled registry tweak below may still be your only option; for a managed Enterprise/Education fleet, the official policy is the more reliable route.
Resources
Gear We Recommend
A few general tech accessories worth having alongside this.
Browse our General Tech Accessories picks on AmazonAs an Amazon Associate, TechyGeeksHome earns from qualifying purchases.
Discover more from TechyGeeksHome
Subscribe to get the latest posts sent to your email.