Windows File Search Not Working: Fixes That Help
Fix Windows file search when it finds nothing: indexer service, Indexing Options, rebuilds, Explorer tips, and better tools.
When Windows file search is not working, the cause is usually the search index, service state, or search scope — not a missing file. Work through the fixes below in order. Along the way we link to the how-to guides in this series so you can search correctly once the plumbing works again.
Quick checks (two minutes)
- Search inside the folder that contains the file, not only from Start.
- Confirm the file exists by browsing manually.
- Try a simple pattern:
*.pdfor an exact known name. - Reboot once if search was working yesterday and suddenly returns nothing — indexer hiccups happen after updates.
If those fail, continue.
Symptoms that point to the indexer (not user error)
- Files you can see in Explorer never appear in search results
- Start finds apps but not documents in the same folder
content:queries always return empty while filenames work- Search worked until a Windows Update, then stopped
- Indexing Options shows thousands Pending that never decrease
If command-line dir /s finds the file but Explorer does not, treat it as an index or scope problem — not a missing file.
Fix 1 — Start the Windows Search service
- Press
Win + R, typeservices.msc, Enter. - Find Windows Search.
- Status should be Running; Startup type Automatic (Delayed Start) is common and fine.
- If stopped, right-click → Start. If start fails, note the error code for IT/support.
Without this service, Explorer and Start search degrade badly.
Restart the service cleanly
In services.msc, right-click Windows Search → Restart. If restart fails with an error code, note the code and check Event Viewer → Windows Logs → Application for Search source errors before reinstalling Windows.
Fix 2 — Include the right locations in Indexing Options
- Open Indexing Options.
- Click Modify.
- Check the drives and user folders you actually use.
- Uncheck huge trees you never query if the indexer is always “busy.”
Corporate laptops sometimes hide Modify behind policy. If controls are grayed out, local fixes may be blocked.
Fix 3 — Enable content indexing for key file types
If names work but contents never match:
- Indexing Options → Advanced → File Types.
- Select extensions like
.pdf,.docx,.xlsx,.txt,.md. - Choose Index Properties and File Contents.
- Apply and wait for indexing to catch up.
Details: search file contents on Windows.
Fix 4 — Rebuild the search index
Confirm index location has free disk space
Indexing Options → Advanced shows the index path (often C:\ProgramData\Microsoft\Search). If that drive is full, indexing stalls silently. Free a few gigabytes and restart the Windows Search service.
Corrupted or stale indexes produce empty or ancient results.
- Indexing Options → Advanced → Rebuild.
- Confirm; wait. Large disks can take hours.
- Keep AC power connected on laptops.
During rebuild, incomplete results are expected — do not rebuild repeatedly in a loop.
After rebuild: what to expect
Search results may look empty or partial for hours while the index repopulates. Use folder-scoped Explorer search or dir /s for urgent hunts during rebuild. Running rebuild twice in one day rarely helps — let the first run finish.
Fix 5 — Run Windows Search troubleshooter
- Settings → Update & Security (Windows 10) or System → Troubleshoot (Windows 11).
- Find Search and Indexing troubleshooter.
- Run it and apply recommended fixes.
It catches common permission and service issues without registry spelunking.
Fix 6 — Check OneDrive and online-only files
Files marked online-only may not behave like local files in every search scenario.
- Right-click the file/folder in OneDrive → Always keep on this device for critical sets.
- Confirm you are searching the correct OneDrive account/profile.
- If sync is stuck, file search will look “broken” when the real issue is sync.
Fix 7 — Exclude and re-include a stubborn folder
Teams and SharePoint synced folders
Files synced through the Microsoft 365 client may live in cloud-only state until opened. Search behaves like local only when files are hydrated. Use Always keep on this device on project roots you query often.
Sometimes a single path poisons results:
- Remove the folder from Indexing Options.
- Apply; wait a minute.
- Add it back.
- Optionally rebuild if that folder is critical and still missing.
Fix 8 — Command-line search as a bypass
When the GUI index is untrustworthy, bypass it:
dir /s /b D:\Projects\*contract*
Get-ChildItem D:\Projects -Recurse -Filter "*contract*" -ErrorAction SilentlyContinue
If command-line finds the file, Windows Search configuration — not the filesystem — is at fault.
Fix 9 — Reset Search without registry hacks (last resort before reinstall)
- Settings → Apps → Installed apps → search for Windows Search or related indexing components if listed.
- Run the Search troubleshooter again after any app repair.
- Create a new local Windows user profile (test account). If search works there, your profile index is corrupt — migrate files or reset the profile with IT help.
Avoid random registry edits from old blog posts unless you have a backup and a specific documented key from Microsoft. Most “fix search” registry tweaks are outdated.
Search correctly after it works again
Return to solid habits:
- How to search for a file on Windows
- Search files in Windows 10
- How to search files on Windows 10
- File finder search engine overview of tool types
When Windows Search is “working” but still useless
A healthy index still fails when:
- You remember the topic, not the filename or exact phrase
- You need photos by description
- You want Everything-level instant name search across millions of files
- Scanned PDFs have no text layer
Those are product limits. Fixing the indexer will not invent semantic understanding.
Better tools for specific jobs
| Need | Tool direction |
|---|---|
| Instant filename search | Everything (voidtools) |
| Keyword content across folders | Agent Ransack, grepWin, Windows content: |
| Meaning + image description, offline | PixaFind |
| Launcher + Explorer integration | Listary |
Honest roundup: best Windows file search software. Coming from Everything and want meaning search: Everything alternative and PixaFind vs Everything.
Where built-in search falls short (even when fixed)
Windows Search optimizes for general OS discovery. It is not a specialized file engine. After you repair it, keep expectations calibrated: great for everyday lookups, weak for conceptual and visual search.
When semantic search helps (offline)
If your recurring pain is “I know what it was about,” install a local semantic search tool rather than rebuilding the index again. PixaFind keeps indexing and queries on your machine.
FAQ
Why does Windows search find apps but not documents?
Often the index excludes your document folders, or you are looking only at the Apps section of Start results. Use File Explorer in Documents and verify Indexing Options.
Does rebuilding the index delete my files?
No. It rebuilds the search database, not your documents.
Search works in one folder but not another — why?
The second folder is probably excluded from the index, on a non-indexed external drive, or blocked by permissions.
Should I disable Windows Search and only use third-party tools?
You can, but Start and some OS features expect it. Prefer repairing the service unless you have a deliberate setup and understand the tradeoffs.
Why does search use so much CPU after an update?
The indexer is catching up on changed files. Let it run on AC power; check Indexing Options for pending count.
Can antivirus break Windows Search?
Yes — real-time scanners that lock files during indexing can cause gaps. Add exclusions for your project folders or the index path per your AV vendor’s guidance (balance security with IT policy).