├── .gitignore ├── README.md └── disable_web_search_in_windows_search.reg /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .idea 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Disable Windows web search 2 | If you're tired of Windows pushing Cortana and Bing in your face, you're not alone. One of the most frustrating things is seeing web search results and random "search suggestions" whenever you try to use the Start menu to find an app or file. 3 | 4 | You hit the Windows key, type a keyword, and instead of just showing your installed programs or local files, it clutters the results with irrelevant junk from the web. If you're here looking for a way to disable this, I bet you think it’s as annoying as I do. 5 | 6 | At first, Windows actually let you turn this off through a simple option in the settings. But as more people started disabling it, Microsoft decided to quietly remove the toggle—because, of course, they knew we all hated it. 7 | 8 | Now, the only way to turn it off is through Group Policy or by editing the registry. And every time there’s a major update, it’s like starting from scratch. 9 | 10 | To save everyone the hassle, I put together a REG file that disables this junk with a single click. It's straightforward, quick, and saves you from having to dig around in settings every time. 11 | 12 | Note: I’ve included comments in the REG code itself to make it clear what each part does, in case you’re skeptical or want to verify what’s being changed. 13 | 14 | --- 15 | 16 | `"ConnectedSearchUseWebOverMeteredConnections"=dword:00000000 ` // _disable web search use mobile connection 17 | 18 | `"AllowCortana"=dword:00000000`// disable Cortana 19 | 20 | `"DisableWebSearch"=dword:00000001` // disable web search 21 | 22 | `"ConnectedSearchUseWeb"=dword:00000000` // disabled web searech connection 23 | 24 | `"CortanaConsent"=dword:00000000` // disable Cortana 25 | 26 | `"BingSearchEnabled"=dword:00000000` // disable bing search in start menu 27 | 28 | `"AllowSearchToUseLocation"=dword:00000000` // disable search feature access your location 29 | 30 | --- 31 | Enjoy :) 32 | -------------------------------------------------------------------------------- /disable_web_search_in_windows_search.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Search ] 4 | "ConnectedSearchUseWebOverMeteredConnections"=dword:00000000 5 | "AllowCortana"=dword:00000000 6 | "DisableWebSearch"=dword:00000001 7 | "ConnectedSearchUseWeb"=dword:00000000 8 | 9 | [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Search] 10 | "CortanaConsent"=dword:00000000 11 | "BingSearchEnabled"=dword:00000000 12 | "AllowSearchToUseLocation"=dword:00000000 13 | --------------------------------------------------------------------------------