Skip to content

Instantly share code, notes, and snippets.

@maphew
Last active December 28, 2024 04:41
Show Gist options
  • Save maphew/58ad023d872059df8380094e740b949a to your computer and use it in GitHub Desktop.
Save maphew/58ad023d872059df8380094e740b949a to your computer and use it in GitHub Desktop.
Disable internet search results in Win 10 Start Menu
Windows Registry Editor Version 5.00
;
; How to disable internet search results in start menu post Creators Update?
; https://superuser.com/questions/1196618/how-to-disable-internet-search-results-in-start-menu-post-creators-update
;
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search]
"BingSearchEnabled"=dword:00000000
"AllowSearchToUseLocation"=dword:00000000
"CortanaConsent"=dword:00000000
;
; Win 11. After setting restart explorer.exe, https://superuser.com/a/1845165/16966
[HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer]
"DisableSearchBoxSuggestions"=dword:00000000
@maphew
Copy link
Author

maphew commented Apr 20, 2024

For Windows 11 I only needed to add the BingSearchEnabled dword value.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment