Created
June 18, 2024 04:27
-
-
Save blakeNaccarato/abbf98e5e752e54528210b40f1cfc584 to your computer and use it in GitHub Desktop.
Disabling Cortana and web search in Windows 11, worked as recently as March 2024
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 | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search] | |
"CortanaConsent"=dword:00000000 | |
"AllowSearchToUseLocation"=dword:00000000 | |
"BingSearchEnabled"=dword:00000000 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Search] | |
"ConnectedSearchUseWebOverMeteredConnections"=dword:00000000 | |
"AllowCortana"=dword:00000000 | |
"DisableWebSearch"=dword:00000001 | |
"ConnectedSearchUseWeb"=dword:00000000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment