Tools & Productivity

How to Remove Metadata from PDF Files: Complete 2026 Guide

Your PDF files contain hidden information like author name, creation date, and editing history. Learn how to remove this sensitive metadata using free methods.

MC
MetaClean Team
January 23, 2026
12 min read

Your PDF Files Are Revealing More Than You Think

Every PDF you create with Microsoft Word, Google Docs, Adobe Acrobat, LibreOffice, or virtually any other document software contains metadata — hidden information fields that describe the document rather than the document's visible content. This metadata is invisible in normal document viewing but is immediately readable to anyone who accesses the file's properties.

For most documents shared internally within an organization, this is inconsequential. But for PDFs you share externally — with clients, recruiters, potential partners, regulators, or the general public — document metadata can reveal information you never intended to disclose. The fix is fast, free, and permanent: removing metadata before sharing takes less time than writing an email subject line, and the protection it provides is complete.

⚠️

Why This Matters

PDF metadata is invisible in normal document viewing but immediately readable to anyone who accesses file properties. A single PDF can reveal the author's full name, their organization, when the document was created, how many times it was revised, what software created it, and internal file paths that may expose network infrastructure details. All of this information travels with every copy of the file, forever.

What Is PDF Metadata?

PDF metadata exists in two main forms: document information dictionary (the traditional metadata fields) and XMP (Extensible Metadata Platform, a more modern standard). Both can be populated by the application that creates the PDF, and both are readable by standard PDF readers, forensic tools, and anyone with basic technical curiosity.

The document information dictionary contains: Title (the document's title, often populated from the first heading), Author (the name registered to the software or OS profile), Subject (often empty but sometimes populated with internal categorization), Keywords (may contain internal tags or categories), Creator (the application that created the original document), Producer (the PDF engine that converted the document), Creation Date (when the document was first created), and Modification Date (when the document was last saved).

Microsoft Word, Outlook, and other Office applications also embed additional properties including Company (the organization name from the software license), Manager (hierarchical relationship data in some environments), Number of Pages, Revision Number (how many times the document has been saved), Total Editing Time, and Last Modified By (the username who last saved the file).

20+
distinct metadata fields that a Microsoft Word-created PDF can contain — most of which are populated automatically without the author's knowledge or explicit input

Why Remove PDF Metadata?

The reasons to remove PDF metadata vary by use case, but they share a common thread: information in metadata was never intended for the document's audience, and its presence creates risk or disadvantage.

Professional and legal submissions: A resume with an Author field that reveals your real name (if you're applying anonymously), modification dates that reveal your job-search timeline, or a company field that names your current employer. A legal document that reveals the law firm's internal tracking identifiers or editing history. A business proposal where competitor-visible revision history reveals your internal decision-making process.

Intellectual property and confidentiality: A report or whitepaper where internal document tracking fields reveal organizational structure or project names that weren't intended for public disclosure. A template shared externally that contains internal company information baked into document properties.

Personal privacy: Documents shared publicly that contain your full legal name in cases where you prefer not to be identified. Family documents distributed digitally that reveal the creator's identity and date of creation.

Regulatory compliance: Under GDPR and similar data protection regulations, personal data embedded in documents you publish or distribute is subject to data minimization principles. Routinely removing personal metadata from PDFs before external distribution is consistent with responsible data handling practices.

How to Check What Metadata Your PDF Contains

Before removing metadata, it's useful to see exactly what's in the file. There are several ways to check:

In Adobe Acrobat Reader (free), press Ctrl+D (Cmd+D on Mac) to open Document Properties, then review the Description tab. This shows the basic document information dictionary fields. For a more complete view, in Acrobat Pro use File > Properties and examine all tabs.

With our MetaClean PDF tool, upload or drop your file and click View Metadata before cleaning. MetaClean displays all metadata fields present in the document with their values, giving you a complete picture of what's embedded before you decide to remove it.

With ExifTool (command-line), run exiftool document.pdf to see all metadata fields. ExifTool provides the most complete view of all metadata types including XMP data that may not appear in standard PDF viewers.

Method 1: MetaClean — Fastest and Most Private

MetaClean is the recommended approach for the vast majority of users. The process: navigate to metaclean.app/pdf-metadata, drag your PDF file into the tool, and click Remove Metadata. Download the cleaned version. The entire operation happens in your browser — your document never leaves your device, never touches any server, and the cleaned file downloads directly to your computer.

MetaClean removes Author, Creator, Producer, Title, Subject, Keywords, Company, Last Modified By, creation and modification timestamps, revision count, total editing time, and any custom properties embedded by Office applications or corporate templates. After cleaning, verify by dropping the cleaned file back into MetaClean — the metadata viewer should show empty or minimal fields.

This approach takes approximately 15-30 seconds per document. For batches of documents, MetaClean supports multiple file uploads simultaneously, allowing you to clean an entire folder of resumes, portfolio pieces, or business documents in a single operation.

💡

What MetaClean Removes from PDFs

  • Author name and Last Modified By username
  • Company and organizational information from license metadata
  • Creation and modification timestamps
  • Revision count and total editing time
  • Creator application and Producer PDF engine information
  • Custom properties and document template references
  • XMP metadata in addition to document information dictionary

Method 2: Adobe Acrobat — Document Inspector and Sanitize

Adobe Acrobat Pro (not the free Reader) includes two levels of metadata management. The basic approach: File > Properties, then manually clear each field in the Description tab. This removes the visible fields but may leave XMP metadata or custom properties untouched.

The complete approach: Tools > Redact > Sanitize Document. The Sanitize function is more thorough than manual field deletion — it removes metadata, JavaScript, embedded content, hidden layers, and other potentially sensitive document elements in a single operation. Sanitize is the appropriate tool for documents that require thorough cleaning before legal or regulatory submission.

The limitation of Acrobat is cost — Acrobat Pro requires a Creative Cloud subscription ($20/month standalone or part of broader CC plans). For organizations that handle documents professionally, this cost is often already absorbed in existing software licenses. For individual users cleaning occasional documents, MetaClean provides equivalent results at no cost.

Method 3: Print to New PDF

A free workaround available on any operating system: open the PDF, print to a PDF printer, and save the resulting file. On Windows, use "Microsoft Print to PDF." On macOS, use Print > Save as PDF. On Linux, use the built-in PDF printer available in most desktop environments.

The print-to-PDF approach creates a new document from the visual rendering of the original, which naturally strips most metadata because it's starting fresh. The limitation: the Author field may still be populated from your operating system user profile, and the Producer field will contain your PDF printer's name. The result is cleaner than the original but not fully stripped. Use MetaClean to verify and complete the job after printing to PDF.

Method 4: Google Docs Export

For documents that can be opened in Google Docs — most Word and text-based PDFs can be imported — the Google Docs export to PDF path creates a relatively clean output. Open the document in Google Docs, then File > Download > PDF Document. The resulting PDF will contain Google's document metadata (indicating Google as the creator) rather than your personal Office profile metadata.

This approach is practical if you're already working in Google Docs and want to minimize metadata in the output. It doesn't provide complete stripping — Google's own metadata is present — but it removes personal Author and Company fields that would otherwise appear in a Word-created PDF. For complete stripping, follow up with MetaClean.

Method 5: ExifTool (Command Line)

For developers, system administrators, and technical users who need scriptable batch processing, ExifTool provides the most flexible solution. The command to remove all metadata from a PDF: exiftool -all:all= document.pdf. To process all PDFs in a directory recursively: exiftool -r -all:all= /path/to/folder/*.pdf.

ExifTool creates backup files by default (with _original suffix). To suppress backup creation and overwrite in place, add -overwrite_original: exiftool -all:all= -overwrite_original document.pdf. Always verify the results by running exiftool document.pdf after cleaning to confirm all fields were removed.

🔒

Method Comparison Summary

  • MetaClean: Complete removal, browser-based, free, no installation, fastest for casual users
  • Adobe Acrobat Sanitize: Complete removal including JavaScript and layers, but requires paid subscription
  • Print to PDF: Mostly removes personal fields, may leave OS username and printer metadata
  • Google Docs export: Replaces personal metadata with Google metadata, not fully stripped
  • ExifTool: Complete removal, scriptable for batch processing, requires terminal knowledge

Batch Processing Multiple PDF Documents

For professionals who need to clean multiple documents regularly — recruiters who process large document volumes, legal teams who handle external submissions, businesses that generate client-facing documents — batch processing matters significantly.

MetaClean supports batch uploads: drag multiple PDF files into the tool simultaneously and download clean versions in a single operation. For very large batches or automated workflows, ExifTool's command-line interface integrates into scripts and processes entire directory trees. A basic shell script can clean every PDF in a folder: find /path -name "*.pdf" -exec exiftool -all:all= -overwrite_original {} ;

Verifying Metadata Has Been Removed

After cleaning any document, verification is good practice. The quickest verification method: open the cleaned PDF in Adobe Reader and check File > Properties (or press Ctrl+D). All Author, Company, and date fields should be empty. For a more complete verification, drop the cleaned file into MetaClean and review the metadata viewer — an empty or minimal report confirms successful cleaning.

Key Takeaway

PDF metadata removal is a 30-second task that should be standard practice before sharing any document externally. MetaClean provides complete, browser-based removal with no server upload — the fastest and most privacy-preserving approach for most users. For batch processing or automated workflows, ExifTool offers command-line control. Always verify after cleaning to confirm all sensitive fields have been removed before the document leaves your device.

Free Online Tool
Remove Metadata Now

Strip EXIF data, GPS location & hidden metadata from your photos and PDFs — instantly. Files never leave your device.

Related Articles