Skip to content

Guide

How to search inside several PDFs at once

Five free ways to search for a word across every PDF in a folder, with the limits almost no tutorial states up front.

Published August 25, 2026 · Updated August 25, 2026

The short answer

Yes, you can, without opening them one by one, and there are at least five free ways. They all share one limit: if the PDF is a scan, none of them finds anything without running OCR first.

An accountant doesn't search "in a PDF": they search which of their two hundred PDFs holds a charge, a tax ID, a line item. Ctrl+F is no use for that because it works one file at a time. What you need is a tool that takes a folder, not a file, and tells you in which documents the thing appears.

This guide walks through each method with its steps and its real limits, so you don't lose an afternoon discovering them yourself. At the end we say where Wurz comes in; the five methods work without it.

The free ways first

The five methods, with their steps

None of them costs anything. What they do require is knowing in advance where each one fails, which is the part tutorials tend to keep quiet.

The five free paths: Windows Search with indexing enabled, Acrobat Reader's advanced search, PDF-XChange or Foxit, pdfgrep in the terminal, and Google Drive. All of them search for the literal word in PDFs that carry a text layer; each one follows below with its steps and its limits.

01

Windows Search (File Explorer)

Windows can search inside the content of your PDFs right from File Explorer, but only if the folder sits in the indexed locations and the PDF file type has content indexing turned on. Setting it up is free; rebuilding the index can take hours.

Steps

  1. Open Indexing Options (type it in the Start menu).
  2. Click Modify and check that the folder where your PDFs live is among the included locations. If you keep everything on an external drive or a network folder, it probably isn't, and that's why it "finds nothing".
  3. Click Advanced → File Types, find the pdf extension, and check "Index Properties and File Contents".
  4. If you just changed something, use Rebuild under Advanced → Index Settings. Honest warning: the rebuild can take several hours, or a full day with many files.
  5. Then, in Explorer, go to the folder and search. To force a content search you can type content: "what you're looking for" in the search box.

Real limits

  • It only searches where the index reaches. Network folders, external drives, and freshly added folders tend to stay out until you include them and wait for indexing.
  • It searches for words, not ideas: if the document says "lease" and you search "rent", there's no result.
  • It tells you which file has the word, but not on which page or in what context: you still have to open the PDF and repeat the search inside.
  • And the limit they all share: if the PDF is a scanned image, there's no text to index. We come back to this below, because it's the typical case.
02

Adobe Acrobat Reader, advanced search (free)

The free Acrobat Reader ships an advanced search (Ctrl+Shift+F) that looks for a word across every PDF in a folder, through the "All PDF Documents in" option. It returns the list of matches with their excerpt and opens the document at the exact spot. It's the most complete free method for folders.

Steps

  1. Open Acrobat Reader and press Ctrl+Shift+F (not to be confused with the regular Ctrl+F).
  2. Choose "All PDF Documents in" and pick the folder with Browse.
  3. Type the term and click Search. You can match whole words, match case, and also search bookmarks and comments.
  4. The panel lists each match with a line of context; clicking one opens the PDF at that page.

Real limits

  • Password-protected PDFs are left out of the multi-document search: you have to open and search them one by one (as Adobe documents it; checked 2026-08-12). The bank statements that arrive with a password fall exactly here.
  • It searches literally and tolerates little. "VAT" won't find "value added tax".
  • With large folders the search gets noticeably slow, because it reads file by file on the spot, with no index.
  • Scans: same wall. The free Acrobat Reader does not include OCR; that feature belongs to the paid version.
03

PDF-XChange Editor or Foxit Reader

If Acrobat feels heavy, the free version of PDF-XChange Editor and Foxit PDF Reader do the same thing: search across every PDF in a folder. PDF-XChange even lets you pick several folders at once from the search panel, and its engine is notably fast.

Steps

  1. PDF-XChange Editor: Edit → Search menu; under "Where would you like to search" open the dropdown and add the folder or folders. The feature is in the free version.
  2. Foxit Reader: Ctrl+Shift+F, same as Acrobat — you choose between the current document or a specific folder.

Real limits

  • The same ones as Acrobat: literal search, and password-protected PDFs left out.
  • Nothing to be done with scans without prior OCR. PDF-XChange's OCR exists but watermarks the documents in the free version; Foxit's is paid.
04

Command line: why findstr doesn't work and what to use

findstr on Windows and grep on Linux or Mac don't work with PDFs: the text inside a PDF is compressed into binary streams, not plain text, so those commands can't see it. The right tool is pdfgrep, which understands the PDF format and searches whole folders with a single command.

Steps

  1. If you work in a terminal (or have WSL on Windows), pdfgrep searches the folder and its subfolders, case-insensitive, showing the page number:
pdfgrep -rin "lease" .

Real limits

  • You need to be comfortable in a terminal; for most firms that rules it out.
  • It's as literal as the rest. pdfgrep takes regular expressions and wildcards, but it still searches strings, not ideas.
  • And scans, again: pdfgrep extracts the text the PDF carries; if it carries none, it extracts none. The classic alternative is converting with pdftotext and running grep on the result, with the same wall.
05

Google Drive

If your PDFs already live in Google Drive, Drive's search bar finds text inside them with zero setup. It's the no-effort method. In exchange, it's the least precise: it tells you which files match, but not where, and with scanned documents the results are hit-and-miss.

Steps

  1. Type the term in Drive's search bar (or use the file-type operator to narrow to PDFs). Drive searches the content of the documents it has indexed.

Real limits

  • It returns files, not excerpts: you know the word is in there, but you still have to open the PDF and search again inside.
  • With scans, Google applies some recognition, but with no guarantees. Its documented OCR tool (converting the PDF to Google Docs) has published limits: files of 2 MB or less, text at least 10 pixels tall, and the help page itself warns that tables and columns are unlikely to be detected well (checked 2026-08-12). A scanned invoice is exactly that: a table. Independent guides also document that the conversion only processes the first 10 pages of the PDF (checked 2026-08-12).
  • It means having your clients' documents in the cloud, with the responsibility that carries. If they're already there, nothing changes; but it's no reason to upload them.

The shared wall

With scanned PDFs, all five hit the same wall

If you search for a word you can see on screen and the search says "no results", the PDF is almost certainly a scan: a photograph of the paper, with no text layer. None of the five methods can read an image. The classic fix is running OCR on each file before you can search.

This isn't our opinion: the very tutorials that teach these methods admit it. Wondershare, in its guide on the subject, says it outright: it is not possible to search text directly inside a scanned PDF without OCR conversion. Its solution is installing another program and converting the files one by one.

For an accounting firm this isn't the odd case, it's the normal one: clients send invoices photographed with their phone, scanned bank statements, printed receipts digitized back again. The documents where finding something is most urgent are exactly the ones traditional search can't see.

Free or cheap ways to run that prior OCR do exist: Acrobat's paid OCR, online tools one file at a time, Drive's conversion with the limits above. All of them add a manual step per document, multiplied by every new folder that lands on you.

To decide

So, which method do I use?

These methods are enough when three conditions hold: the PDFs carry a text layer, you know the exact word you're looking for, and knowing which file it's in is enough for you to open it yourself. While all three hold, you need nothing beyond the table below.

Which free search method fits each situation
SituationMethod that's enough
You search for an exact word in digital (non-scanned) PDFs, once in a whileAcrobat Reader with Ctrl+Shift+F, direct and with no setup
You search often in the same local foldersWindows with indexing properly set up: the index wait is paid once
You want speed and several folders at onceThe free PDF-XChange Editor
You live in the terminalpdfgrep -rin
Everything's already in Drive and knowing which file is enoughDrive's search bar

And they stop being enough when any of the three fails: the documents are scans, the fact may be written another way ("rent", "lease", "commercial land use"), or you need the answer with its exact location because it's going into a working paper and you have to be able to defend it.

When free isn't enough

Where Wurz comes in (and where you don't need it)

If the methods above solve it for you, use them: they're free and depend on nobody. Wurz exists for the three failures in the previous paragraph.

Wurz answers questions about the documents in your own Drive. If a document is a scan, it runs OCR on it when it arrives; you don't search for the exact word, you ask; and every answer comes with the document and the excerpt it came from, so you verify it yourself. Your files never leave your Drive.

Scans

If the document is a scan, Wurz applies OCR automatically: there's no need to convert the file before you can search in it. The manual step per document disappears.

Exact word

You don't feed Wurz a string: you ask it a question, "which invoice has the elevator maintenance?", and it understands what you mean even when the document says it in other words.

A defensible answer

Every answer comes with its citation: which document and which exact excerpt, so you check it letter by letter against the original before using it. An answer you can't verify is useless for tax work: if the figure is wrong before the SAT, Mexico's tax authority, the accountant answers for it, not the tool.

And the point that isn't negotiable in a firm: Wurz doesn't keep your files. The documents keep living in your Drive; Wurz doesn't store them.

What Wurz does not do, so there's no confusion: it isn't accounting software, it doesn't stamp invoices, it doesn't post entries or file returns, and it doesn't interpret the law or give tax opinions. It finds and cites what your documents say; the judgment stays with the accountant. There's a free plan to try it with real documents.

If what holds you back is a different doubt, what uploading client documents to an AI tool implies, that question has its own guide: Is it safe to upload your clients' information to ChatGPT?

Common questions

What people ask most about this

How do I search for a word in every PDF in a folder at once?

With the free Adobe Acrobat Reader: press Ctrl+Shift+F, choose "All PDF Documents in", pick the folder, and search. Windows Search (with content indexing enabled for PDFs), PDF-XChange Editor, Foxit Reader, or the pdfgrep command work too. All of them require the PDFs to have a text layer.

Why do I find nothing when I search inside a scanned PDF?

Because a scanned PDF is a photograph of the paper: it doesn't contain text, it contains an image of the text. Ctrl+F, Windows, Acrobat, and Drive search the text layer, and in a scan that layer doesn't exist. To make it searchable you have to run OCR on it, or use a tool that does so automatically when it receives the document.

Can I search several PDFs if they're password-protected?

In Acrobat's multi-document search, no: protected PDFs are excluded and you have to open and search them one by one. If you receive password-protected bank statements, save an unprotected copy in your file before searching.

Can Windows Search look inside the content of PDFs?

Yes, under two conditions: the folder must be among the indexed locations, and the PDF file type must have "Index Properties and File Contents" checked in Indexing Options. After changing the settings you have to rebuild the index, which can take hours.

Is there anything that understands what I mean even if it's written differently?

Traditional search (Windows, Acrobat, pdfgrep, Drive) is literal: it finds the exact string you type. To find a fact written another way you need a natural-language tool. Wurz answers questions about your documents and returns the document and the exact excerpt the answer came from, without keeping your files.

Try it with your real documents

Upload a handful of receipts from your most demanding client and ask the question that normally takes you half an hour. That's how you'll know if it's worth it.

No credit card. Nothing to install.