Skip to content

Instantly share code, notes, and snippets.

@pirafrank
Created November 4, 2024 08:55
Show Gist options
  • Save pirafrank/ae668b702242b2b2ab79a2fc1d072015 to your computer and use it in GitHub Desktop.
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.
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
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