Last active
December 28, 2024 04:41
-
-
Save maphew/58ad023d872059df8380094e740b949a to your computer and use it in GitHub Desktop.
Disable internet search results in Win 10 Start Menu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For Windows 11 I only needed to add the
BingSearchEnabled
dword value.