Skip to content

Instantly share code, notes, and snippets.

@lucienbill
Last active November 14, 2022 15:19
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lucienbill/d72ee1dcb43f189d1b1fb81e6625429b to your computer and use it in GitHub Desktop.
Save lucienbill/d72ee1dcb43f189d1b1fb81e6625429b to your computer and use it in GitHub Desktop.
This command disables the internet results when you search things in the Windows menu
# About Windows 11 whenever you hit the "Windows" key, the Windows menu
# appears, and it has a search engine! Neat!
# But that's not all: this search engine doesn't just look for content on your
# computer, it also searches on the internet.
#
# I love this kind of features, unless it is forced onto the user. There isn't
# any way to toggle it on or off in Windows' UI, which makes me really hate it.
#
# Run this command in a CMD or PowerShell terminal to disable this feature:
REG ADD HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search\ /v BingSearchEnabled /t REG_DWORD /d 0
@lucienbill
Copy link
Author

Source: this article: they provided the instructions do it with reggedit's GUI, I translated it to a CLI instruction.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment