Created
November 9, 2025 03:54
-
-
Save rwp0/f911443307a4200b44b5fad4168dbe76 to your computer and use it in GitHub Desktop.
Disable Windows Web Search from Start Menu via Registry
This file contains hidden or 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
| using Microsoft . Win32; | |
| string path = @"SOFTWARE\Microsoft\Windows\CurrentVersion\Search"; // Windows -> Search -> Bing | |
| RegistryKey key = Registry . CurrentUser . OpenSubKey ( path , true ); | |
| key . SetValue ( "BingSearchEnabled" , 0 , RegistryValueKind . DWord ); |
This file contains hidden or 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
| Set-ItemProperty-Path “HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Search” -Name “BingSearchEnabled” -Value 0 -Type DWord |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment