How to fix the Windows Search Bar Bug

After a Windows 10 update, it’s not unusual for the search box next to the Start button to stop responding — you click it, start typing, and nothing appears. This particular bug traces back to the Bing-integrated search function breaking rather than the search index itself being corrupt. The fix Disabling Bing integration in search […]

How To Fix The Windows Search Bar Bug
After a Windows 10 update, it’s not unusual for the search box next to the Start button to stop responding — you click it, start typing, and nothing appears. This particular bug traces back to the Bing-integrated search function breaking rather than the search index itself being corrupt.

The fix

Disabling Bing integration in search resolves it. You can do this with a single registry change:
  1. Open Registry Editor (regedit.exe).
  2. Browse to:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search
  1. Find the BingSearchEnabled DWORD value. If it doesn’t exist, create a new DWORD (32-bit) value with that exact name.
  2. Set its value to 0.
You may not need to reboot for the change to take effect, but if the search bar is still unresponsive afterwards, reboot and try again — it should now be working.

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 -Force
Because 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)

The BingSearchEnabled 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

Windows 10 Search Bar Bug BingSearchEnabled DWORD Disabled
⬇️

Get the download

Windows 10 Search Bar Fix is available as a free download.

Download Now →
🛠️

Gear We Recommend

A few general tech accessories worth having alongside this.

Browse our General Tech Accessories picks on Amazon

As an Amazon Associate, TechyGeeksHome earns from qualifying purchases.


Discover more from TechyGeeksHome

Subscribe to get the latest posts sent to your email.

Andrew Armstrong

Andrew Armstrong is a UK-based IT professional with 26+ years of hands-on experience in Windows, Windows Server, SCCM/ConfigMgr, Active Directory, PowerShell, and enterprise infrastructure.

He founded TechyGeeksHome in 2010 and has published over 1,500 practical guides covering real-world IT problems and solutions. When not solving IT problems,

Andrew develops free Windows utilities including Ultimate Settings Panel, which has been downloaded over 850,000 times.