Remove Metadata from PDF on Windows: 3 Methods
Remove metadata from PDF on Windows with Print to PDF, ExifTool, or qpdf and Ghostscript. Strip author and title before sharing contracts and decks.
Legal sends a redacted contract PDF, but Properties still lists the paralegal’s name, a template path, or the original Word author. Remove metadata before external share, e-discovery upload, or public download when hidden fields should not leave your org.
PDF metadata types
Viewers expose many fields under Properties → Details.
| Metadata | Where it appears |
|---|---|
| Title, Author, Subject | Document properties |
| Creator and Producer | Export app and PDF engine |
| Creation and modification dates | Properties and compliance scans |
| XMP packets | Embedded XML for DAM and Adobe workflows |
Metadata removal differs from shrinking embedded images. When byte size is the main problem, see how to compress PDF on Windows . Online sanitizers upload the full document; for NDAs and board decks, keep processing local. See are online file compressors safe on Windows .
Method 1: Remove metadata with Print to PDF
Best for: A quick cleaner copy when some tag loss is enough.
- Open the PDF in Edge or Adobe Acrobat Reader.
- Choose Print, select Microsoft Print to PDF.
- Save to
redacted\with a new filename. - Right-click the copy → Properties → Details and compare fields.
For image-heavy decks where metadata is fine but size is not, re-export from PowerPoint at screen quality.
Limitation: Print paths can alter fonts, links, and layer structure. Use ExifTool when you need deterministic tag removal without re-rendering pages.
Method 2: Strip with ExifTool
Best for: Deterministic author and title removal.
winget install ExifToolexiftool -PDF:Author= -PDF:Title= -PDF:Subject= -PDF:Keywords= input.pdfSafer for archives:
exiftool -all= -o clean.pdf input.pdfBatch a folder:
mkdir clean
Get-ChildItem *.pdf | ForEach-Object {
exiftool -all= -o "clean\$($_.Name)" $_.FullName
}Verify with exiftool clean.pdf.
Limitation: ExifTool is a metadata tool, not a certified redaction suite for classified content.
Method 3: qpdf and Ghostscript
Best for: Structural rewrite when ExifTool alone is not enough.
winget install qpdf
qpdf --linearize input.pdf output.pdfThen strip tags on output.pdf with ExifTool.
Ghostscript rewrite example:
gswin64c -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dNOPAUSE -dQUIET -dBATCH `
-sOutputFile=clean.pdf input.pdfCompare one page visually after Ghostscript. Prefer ExifTool when you must preserve exact rendering.
Limitation: Aggressive rewrite can soft-type on scans.
Check the result
Spot-check Properties → Details on one file before you zip the packet. Keep originals\ with full metadata for internal records. Send only clean\ copies externally. A -redacted filename suffix helps when both versions live in the same SharePoint library.
| Scenario | Why metadata matters |
|---|---|
| Client contract | Internal author name reveals staffing |
| RFP response | Producer string shows toolchain |
| Public whitepaper | Old Title from a draft filename |
When Print to PDF or ExifTool is enough
Print to PDF is enough for a simple share when Details looks clean. ExifTool fits folders and compliance checks.
GetCompress is not a dedicated PDF metadata stripper. When the real pain is embedded image weight, use it to compress PDF files locally, then strip author fields with ExifTool on the smaller output if required. It does not replace legal redaction tools. Pair with how to compress PDF on Windows for size-first workflows.
- How to Compress PDF on WindowsCompress PDF on Windows with GetCompress, PowerPoint re-export, or Ghostscript. Shrink decks and scans for Outlook and portals.
- Are Online File Compressors Safe on WindowsWhat happens when you upload files to online compressors, and what to use on Windows instead with Photos, Clipchamp, and GetCompress.
- Remove Metadata from PDF on MacRemove metadata from PDF on Mac with Preview export, ExifTool, or qpdf and Ghostscript. Strip author and title before sharing contracts and decks.
- How to Compress Images on WindowsCompress images on Windows with GetCompress, Photos, or FFmpeg. Resize JPG and PNG, convert WebP, and keep sharp UI for email or web.