Skip to content

Instantly share code, notes, and snippets.

@TomyLobo
Last active November 4, 2023 14:59
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TomyLobo/8f401e8a4dd8421c5089453efa22e169 to your computer and use it in GitHub Desktop.
Save TomyLobo/8f401e8a4dd8421c5089453efa22e169 to your computer and use it in GitHub Desktop.
How to disable Cortana
  1. Save disable-cortana.reg as UTF-16 little endian with BOM or UCS-2 little endian with BOM
    • Windows' Notepad calls that "Unicode"
  2. Double-click it and confirm any prompts
  3. Reboot Windows

To verify that it worked, open the start menu and type anything. Search should be limited to local results only and not blast all your keystrokes into the net.

Source: https://pureinfotech.com/disable-web-search-windows-10-version-1803/

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
"AllowCortanaAboveLock"=dword:00000000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment