How-to 7 min read

How to Search for a File on Windows 10 and 11

How to search for a file on Windows 10 or 11 using File Explorer, Start, indexing, and Command Prompt — step by step.

Learning how to search for a file on Windows 10 (and Windows 11) is mostly about picking the right entry point: Start menu, File Explorer, or the command line. The steps below work on both versions; UI labels differ slightly, but the ideas are the same.

If you are new to Windows search, think of it in three layers: where you search (Start vs Explorer vs CMD), what you search (name vs content vs date), and whether the folder is indexed. Get those three right and most hunts finish in under a minute.

Search from the Start menu

  1. Press the Windows key.
  2. Start typing the filename or a distinctive part of it.
  3. Check the Documents / Folders section of the results (not only Apps).
  4. Right-click a result → Open file location when you need the folder, not the file itself.

Start search uses the Windows Search index. If a file is brand new or outside indexed locations, it may not appear yet.

What Start search is good at: recently opened documents, files in Desktop/Documents/Downloads, apps and settings with similar names.

What it misses: deep project trees on D:\ or network shares unless indexed, files created seconds ago before the indexer runs, and content inside files unless you use a different workflow (see search file contents on Windows).

Windows 11 tip

Windows 11’s Start search mixes web suggestions with local files. If you only want local results, prefer File Explorer search in the folder you care about, or disable web highlights in Settings if they get in the way.

Search in File Explorer (best everyday method)

  1. Open File Explorer (Win + E).
  2. Navigate to the drive or folder most likely to contain the file (for example Documents or D:\Projects).
  3. Click the search box (top-right) and type part of the name.
  4. Wait for results; large folders take longer if Windows has to crawl instead of using the index.

Use these patterns in the search box:

  • *.xlsx — all Excel files in the current scope
  • report*.pdf — PDFs starting with “report”
  • filename:minutes — name contains “minutes”
  • datemodified:today — modified today
  • size:>50MB — large files

Combine filters: *.docx datemodified:this month.

Save searches for repeat hunts

On Windows 10, after you run a useful Explorer query, the Search tab → Save search stores it under Searches in your user profile. Double-click the saved search later to re-run the same filters without retyping operators. Handy for monthly report sweeps (*.xlsx datemodified:last month).

Make sure Windows is indexing the right places

If searches miss files you know exist:

  1. Open Indexing Options.
  2. Click Modify.
  3. Include your real work folders and secondary drives.
  4. Exclude junk (steam libraries, node_modules, huge build folders) so the index stays useful.

Then open Advanced → confirm file types you care about are included.

Without a healthy index, File Explorer falls back to slow linear scans — which feels like “search is broken.”

Libraries vs real folders

Windows Libraries (Documents, Pictures) can aggregate multiple paths. If a file lives in a custom folder not included in the library, Start may miss it while Explorer search from that folder works. When in doubt, search the actual folder on disk, not an abstract library view.

SSD vs HDD indexing

Indexing on a fast SSD completes sooner after large imports. On a slow external HDD, the indexer may lag hours behind a bulk copy. If you just moved 50 GB of files, give the index time or search the folder directly with dir /s while indexing catches up.

Search from Command Prompt or PowerShell

When you know the approximate folder:

Command Prompt

dir /s /b *budget*

PowerShell

Get-ChildItem -Path $env:USERPROFILE\Documents -Recurse -Filter "*budget*" -ErrorAction SilentlyContinue |
  Select-Object FullName, Length, LastWriteTime

These search names (and optionally metadata), not meaning. They are reliable when GUI search feels stuck.

When to prefer the command line

  • The Windows Search service is stopped or rebuilding.
  • You need a plain text list of paths to paste into a script.
  • You are on a server or remote desktop where Explorer is sluggish.
  • You want to sort by date in one shot (PowerShell example above).

PowerShell — newest matching files first:

Get-ChildItem -Path D:\ -Recurse -Filter "*budget*" -File -ErrorAction SilentlyContinue |
  Sort-Object LastWriteTime -Descending |
  Select-Object -First 15 FullName, LastWriteTime

Find a file when you only remember what it was about

Filename search assumes you remember something about the name. Real life is messier:

  • You remember “the deck about pricing,” not Q3_pricing_v7_FINAL.pptx
  • You remember a screenshot of a whiteboard, not IMG_4821.PNG
  • You remember a clause, not which contract file held it

Built-in Windows search can help if the words appear in the filename or (with content indexing) inside the file. It cannot connect synonyms or describe a photo.

For content-inside-files steps, see how to search file contents on Windows. For Windows 10-specific filename tips, see search files in Windows 10 and how to search files on Windows 10.

Windows 10 vs Windows 11 — what actually changed

TaskWindows 10Windows 11
Start searchCortana-era search box / StartSearch icon + Start; more web mixing
Explorer searchSearch tab on ribbonSimplified search box; filters still work
Indexing OptionsSame control panel appletSame applet (search for it)
SettingsSearch Windows under Cortana/SearchPrivacy & security → Search

The skills transfer. If you learned File Explorer filters on Windows 10, they still apply on 11.

Keyboard-only workflow

  1. Win + E — open Explorer.
  2. Alt + D — focus address bar; type or paste folder path; Enter.
  3. Ctrl + F — focus search box.
  4. Type query; arrow keys through results; Enter to open.

No mouse required. Power users on laptops live in this loop.

Checklist when a file “should” appear but does not

  1. Confirm the file exists (navigate manually or check Recycle Bin).
  2. Search from the parent folder, not This PC.
  3. Try an extension filter (*.pdf) plus one unique word.
  4. Verify Indexing Options includes that path.
  5. Rebuild the index if results have been wrong for days.
  6. Try dir /s from an elevated or normal prompt in that tree.

Still stuck? Read Windows file search not working.

Where built-in file search falls short

Windows is fine when you know a fragment of the name. It struggles when:

  • Names are automated or meaningless
  • You need “find the photo of the red warehouse” with no tags
  • The document uses different wording than your query
  • Indexing is chronically broken on a work PC with locked policies

OneDrive and duplicate paths

The same project might exist locally and in a synced OneDrive path. Search the folder you actually saved to. Right-click suspicious results → Open file location to confirm which copy you are opening. “Online-only” placeholders sometimes confuse search until sync completes.

When semantic search helps (offline)

PixaFind searches by meaning across documents and by description across images, entirely offline. It is not a replacement for a lightning-fast filename indexer like Everything when you already know the name — it is for the cases where you know the idea.

Compare options in our best Windows file search software guide, or see how we differ from Everything in PixaFind vs Everything.


FAQ

What is the quickest way to search for a file on Windows 10?
Open File Explorer, go to the likely folder, and type in the search box. Start menu search is fine for indexed user folders but misses more often on secondary drives.

Can I search all drives at once?
Yes — search from This PC — but it is slower and noisier. Prefer one drive or folder, then widen only if needed.

Does this guide apply to Windows 11?
Yes. The same Indexing Options and Explorer filters work; only Start’s layout differs.

Why can’t Windows find a file I downloaded today?
New files may not be indexed yet, or Downloads may be excluded. Search inside the Downloads folder directly, or wait for the indexer / rebuild.

How do I search external USB drives?
Plug in the drive, add it in Indexing Options → Modify, or search from that drive letter in Explorer (slower if not indexed). dir /s /b E:\*filename* works without indexing.

Can I search network shares?
Yes, if the share is in the index and you have read permissions. UNC paths (\\server\share) are often slow or excluded on corporate PCs — ask IT or use command-line search on the mapped drive letter.