# How to Fix Windows 11 Search Not Working URL: https://www.mytechnician.tech/tips/fix-windows-11-search-not-working/ Published: 2026-05-25 | Updated: 2026-08-10 | Author: Ankit Kumar Tags: Windows 11, Troubleshooting, Fix, Search Summary: Search box empty, spins forever, or won't find apps and files? Restart Search indexing, rebuild the index, and reset Windows Search without breaking Start. Recommended app: PC-Troubleshooter — https://www.mytechnician.tech/apps/windows-troubleshooter/ (Microsoft Store: https://apps.microsoft.com/detail/9N7RWKW8SP24?hl=en-us&cid=mytechnician-web). Optional; every step below uses built-in Windows tools. ## 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](https://www.mytechnician.tech/tips/fix-windows-11-start-menu-not-opening/), 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 + R` → `services.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 **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)**: ```powershell Get-AppxPackage Microsoft.Windows.Search | Reset-AppxPackage ``` If that errors, re-register it: ```powershell 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 + R` → `control /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 **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)**: ```powershell Stop-Service WSearch -Force ``` ```powershell Remove-Item "$env:ProgramData\Microsoft\Search\Data\Applications\Windows\*" -Recurse -Force -ErrorAction SilentlyContinue ``` ```powershell Start-Service WSearch ``` Do not do this on a managed work PC without asking IT. ## Step 6: Choose Classic or Enhanced Indexing 1. **Settings** → **Privacy & security** → **Searching 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](https://www.mytechnician.tech/tips/free-up-disk-space-c-drive-full-windows-11/). * **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. **Settings** → **Privacy & security** → **Search 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.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 ```cmd DISM /Online /Cleanup-Image /RestoreHealth ``` ```cmd sfc /scannow ``` Details: [repair Windows 11 with SFC and DISM](https://www.mytechnician.tech/tips/how-to-run-sfc-dism-repair-windows-11/). If the **Settings app itself will not open** while you work through this, fix that first: [Settings app not opening](https://www.mytechnician.tech/tips/fix-windows-11-settings-app-not-opening/). ## After an Update Broke Search Uninstall the most recent quality update: [fix Windows 11 after a bad update](https://www.mytechnician.tech/tips/fix-windows-11-after-bad-update-rollback/). If search broke after a feature upgrade, complete any pending updates first—[Windows Update stuck](https://www.mytechnician.tech/tips/fix-windows-update-stuck-windows-11/)—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](https://www.mytechnician.tech/tips/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. --- Source: https://www.mytechnician.tech/tips/fix-windows-11-search-not-working/ — My Technician, free Windows 10/11 troubleshooting guides. Related tool: PC-Troubleshooter (PC-Troubleshooter is a system diagnostic and repair tool for Windows 10 and Windows 11—hardware, drivers, network, and common fixes in one app.) — https://www.mytechnician.tech/apps/windows-troubleshooter/ More guides: https://www.mytechnician.tech/llms.txt