How to Fix Windows 11 Search Not Working

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

  1. Win + Rservices.msc.
  2. Find Windows Search → right-click → Restart.
  3. Double-click it and confirm Startup type is Automatic (Delayed Start).
  4. 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

SettingsSystemTroubleshootOther troubleshootersSearch and IndexingRun. 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.

  1. Press Win + Rcontrol /name Microsoft.IndexingOptions.
  2. Check what is listed under Included Locations—if your document folders are absent, that is your answer, and Modify adds them.
  3. Click AdvancedRebuildOK.

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

  1. SettingsPrivacy & securitySearching Windows.
  2. Under Find my files, Classic indexes only libraries and the desktop; Enhanced indexes the whole PC.
  3. If files outside your user folders are not being found, switch to Enhanced—but expect a long initial index and higher disk activity.
  4. 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

  1. SettingsPrivacy & securitySearch permissions.
  2. 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.
  3. Under History, click Clear device search history.

To remove web results entirely on Pro editions, use gpedit.mscComputer ConfigurationAdministrative TemplatesWindows ComponentsSearch → 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.