Skip to content

Instantly share code, notes, and snippets.

@rwp0
Created November 9, 2025 03:54
Show Gist options
  • Select an option

  • Save rwp0/f911443307a4200b44b5fad4168dbe76 to your computer and use it in GitHub Desktop.

Select an option

Save rwp0/f911443307a4200b44b5fad4168dbe76 to your computer and use it in GitHub Desktop.
Disable Windows Web Search from Start Menu via Registry
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 );
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