Rick Strahl's Weblog  

Wind, waves, code and everything in between...
.NET • C# • Markdown • WPF • All Things Web
Contact   •   Articles   •   Products   •   Support   •   Advertise
Sponsored by:
West Wind WebSurge - Rest Client and Http Load Testing for Windows

Speed up your Start Menu by disabling Web Search


:P
On this page:

Post Banner

I ran into a great tip yesterday on X, that is too good not to pass on and also to serve as a reminder for myself next time I install Windows:

And yeah, it really is a huge improvement! I've occasionally had issues with delayed opening of the start menu or sometimes the menu not opening at all and requiring multiple hits of the Windows key - even on an otherwise blazing fast machine. It's always been kind of random, and it makes sense now that it was probably tied to a temporary slow or high latency Internet connection.

Well, no more. With the simple registry hack the start menu now pops up instantly and there are no more 'misses'.

Note that setting this key will turn off Web search in the start menu, so if you want to use Web Search in the Start Menu, don't use this hack. Personally, I never want to see a Web search in the start menu, I just want the thing to be as fast as possible so I can drive search driven access to programs, folders and other resources on my local machine. I'll use a Web browser when I want a Web search - thank you very much!

Setting the Registry Value

Here's what that looks like in the registry:

Disable Bing Search In The Registry

To set the key via Powershell:

New-ItemProperty HKCU:\Software\Microsoft\Windows\CurrentVersion\Search -Name "BingSearchEnabled" -Value "0" -PropertyType dword

or use a .reg file or copy and paste the key directly into the registry:

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search]
"BingSearchEnabled"=dword:00000000

Leaving this here, mainly as a point of reference for future me for the next time I install Windows...

Posted in Windows  

The Voices of Reason


 

Jon Sagara
May 04, 2024

# re: Speed up your Start Menu by disabling Web Search

Hi Rick,

I saw this little tool making the rounds this week, too:

https://github.com/xM4ddy/OFGB

Best,

Jon


Darrell
May 07, 2024

# re: Speed up your Start Menu by disabling Web Search

Great tip! It's annoying it's a setting that requires a registry change which is often a locked down for business laptops. oh well.


West Wind  © Rick Strahl, West Wind Technologies, 2005 - 2024