The Problem
You type into the taskbar search box and get nothing—or web results only, with no apps or files. Sometimes the search panel opens but Indexing never completes. Broken search often accompanies a dead Start menu, because both use the same Windows Search package.
Step 1: Identify Which Part Is Broken
Three quite different faults share one symptom.
- The search box does not open at all, or opens blank → the shell package. Steps 2, 4, and 5.
- Search opens and finds apps but no files → the index. Steps 3 and 6.
- Search returns web results only → search permissions and account state. Step 8.
Step 2: Restart the Search Services
Win + R→services.msc.- Find Windows Search → right-click → Restart.
- Double-click it and confirm Startup type is Automatic (Delayed Start).
- If the service is missing or set to Disabled, an "optimiser" script has been at work—re-enable it.
Then restart the search UI process: Task Manager → Details → end SearchHost.exe. It relaunches automatically.
Step 3: Run the Troubleshooter
Settings → System → Troubleshoot → Other troubleshooters → Search and Indexing → Run. Choose Files don't appear in search results and apply what it suggests. It resets service states and index permissions, which is a genuine fix in a fair share of cases.
Step 4: Reset the Search Package
In Terminal (Admin):
Get-AppxPackage Microsoft.Windows.Search | Reset-AppxPackage
If that errors, re-register it:
Get-AppxPackage -AllUsers Microsoft.Windows.Search | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
Restart afterwards.
Step 5: Rebuild the Index
This is the fix when search works but returns nothing useful.
- Press
Win + R→control /name Microsoft.IndexingOptions. - Check what is listed under Included Locations—if your document folders are absent, that is your answer, and Modify adds them.
- Click Advanced → Rebuild → OK.
Rebuilding takes anywhere from 20 minutes to several hours depending on how many files you have. Leave the PC on and plugged in. Search results will be incomplete until it finishes—that is expected, not a failure.
If Rebuild does nothing, clear the database by hand. In Terminal (Admin):
Stop-Service WSearch -Force
Remove-Item "$env:ProgramData\Microsoft\Search\Data\Applications\Windows\*" -Recurse -Force -ErrorAction SilentlyContinue
Start-Service WSearch
Do not do this on a managed work PC without asking IT.
Step 6: Choose Classic or Enhanced Indexing
- Settings → Privacy & security → Searching Windows.
- Under Find my files, Classic indexes only libraries and the desktop; Enhanced indexes the whole PC.
- If files outside your user folders are not being found, switch to Enhanced—but expect a long initial index and higher disk activity.
- Check the Excluded folders list at the bottom, which frequently contains something you actually wanted indexed.
Step 7: Check the Conditions Indexing Needs
Indexing quietly stops when:
- Free disk space is low. It needs headroom—free up disk space.
- Power settings interfere. Indexing pauses on battery by default; plug in.
- A BitLocker drive is locked. Unlock it or it cannot be indexed.
- Files sit on an external drive that is not always connected.
- OneDrive files are online-only. Cloud placeholders are indexed by filename but not by content until downloaded.
Step 8: Web Results Only
- Settings → Privacy & security → Search permissions.
- Turn off Show search highlights and, under Cloud content search, the Microsoft account and work account toggles if you do not want Bing results mixed in.
- Under History, click Clear device search history.
To remove web results entirely on Pro editions, use gpedit.msc → Computer Configuration → Administrative Templates → Windows Components → Search → enable Don't search the web or display web results in Search.
Step 9: Repair System Files
DISM /Online /Cleanup-Image /RestoreHealth
sfc /scannow
Details: repair Windows 11 with SFC and DISM. If the Settings app itself will not open while you work through this, fix that first: Settings app not opening.
After an Update Broke Search
Uninstall the most recent quality update: fix Windows 11 after a bad update. If search broke after a feature upgrade, complete any pending updates first—Windows Update stuck—before rebuilding the index a second time.
Still Broken?
Test a new local user account. If search works there, your profile is the fault. If it fails in a fresh profile after everything above, run an in-place repair install keeping files and apps: reinstall Windows without losing data.
Meanwhile: Win + R runs programs by name, Win + E opens Explorer, and File Explorer's own search box works independently of the taskbar search when the index is healthy.
Related guides
How to Find and Remove Cryptominer Malware in Windows 11
Fans loud, CPU or GPU pinned when idle, and usage drops the moment you open Task Manager? That is a cryptominer. Here is how to find it and remove it for good.
Remove Malware Startup Entries and Scheduled Tasks
Malware you deleted keeps coming back? It left a scheduled task, service, or Run key behind. Here is how to find and clear every persistence point in Windows 11.
How to Detect and Remove a Rootkit in Windows 11
Malware that survives every scan and reinstall is hiding below Windows. Detect a rootkit or bootkit, remove it properly, and know when a clean install is the only answer.
How to Fix a Missing Dual-Boot Menu in Windows 11
PC boots straight into Windows with no choice of operating system? Restore the boot menu with firmware settings, bcdedit, and a GRUB repair if needed.
Fix Microsoft Account Sign-In Problems in Windows 11
"We couldn't sign you in" or 0x80190001 when adding a Microsoft account? Fix the clock, the sign-in service, and the cached credentials behind it.