Start Menu searches taking 5 seconds because Windows is searching Bing? Disable web search to get instant local file/app results.
The Annoying Problem:
You type "calc" in Start Menu Windows searches: 1. Local apps (0.1 seconds) 2. Bing web search (5 seconds loading...) 3. Shows web results you don't want Result: 5 second delay just to open Calculator!
The Registry Fix:
Open Registry Editor (Win+R → regedit)
Navigate to:
HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer
Create DWORD value:
Name: DisableSearchBoxSuggestions
Value: 1
Restart Explorer or reboot.
Easier Method – Group Policy:
1. Win+R → gpedit.msc 2. Navigate to: Computer Configuration → Administrative Templates → Windows Components → Search 3. Double-click: "Don't search the web or display web results" 4. Set to: Enabled 5. Click OK 6. Restart
Why This Matters:
// Before (with Bing search): Type "word" → Wait 5 seconds → See web results for "word definition" You wanted: Microsoft Word app // After (local only): Type "word" → Instant result → Microsoft Word 0 seconds delay, exactly what you wanted
Bonus – Disable Web Search via PowerShell:
# Run as Administrator
New-ItemProperty -Path "HKCU:\Software\Policies\Microsoft\Windows\Explorer" `
-Name "DisableSearchBoxSuggestions" `
-Value 1 `
-PropertyType DWORD `
-Force
# Restart Explorer
Stop-Process -Name explorer -Force
Additional Search Improvements:
Also disable in same Group Policy location: ✅ "Don't search the web or display web results in Search" ✅ "Don't use Bing to search online" (if available) ✅ "Allow Cortana" → Disabled Result: Pure local search, no internet lookups, instant results
Performance Comparison:
Search for "notepad": With Bing: 4.2 seconds average Without Bing: 0.3 seconds average = 14x faster! Search for local file: With Bing: 6-8 seconds (waits for web timeout) Without Bing: 0.5 seconds = 12-16x faster!
If Group Policy Editor Not Available (Windows Home):
Use this batch script:
@echo off reg add "HKCU\Software\Policies\Microsoft\Windows\Explorer" /v DisableSearchBoxSuggestions /t REG_DWORD /d 1 /f taskkill /f /im explorer.exe start explorer.exe echo Bing search disabled! pause
Save as disable-bing-search.bat, run as Administrator.
