Created
November 4, 2024 08:55
-
-
Save pirafrank/ae668b702242b2b2ab79a2fc1d072015 to your computer and use it in GitHub Desktop.
Disable Web Search feature in Windows 10 and Windows 11 for faster searching in the Start Menu. Tested on Win 11 Pro, should work on all editions.
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 | |
; Disable Web Search in Windows Search | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Search] | |
"DisableWebSearch"=dword:00000001 | |
"ConnectedSearchUseWeb"=dword:00000000 | |
"AllowCortana"=dword:00000000 | |
; Additional Web Search Settings | |
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Search] | |
"BingSearchEnabled"=dword:00000000 | |
"CortanaConsent"=dword:00000000 | |
; Force Windows to Restart the Search Service | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Search] | |
"SetupCompletedSuccessfully"=dword:00000000 |
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 | |
; Enable Web Search in Windows Search | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Search] | |
"DisableWebSearch"=dword:00000000 | |
"ConnectedSearchUseWeb"=dword:00000001 | |
"AllowCortana"=dword:00000001 | |
; Additional Web Search Settings | |
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Search] | |
"BingSearchEnabled"=dword:00000001 | |
"CortanaConsent"=dword:00000001 | |
; Reset Search Service Setup | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Search] | |
"SetupCompletedSuccessfully"=dword:00000001 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment