TroubleshootingMarch 17, 2026
Meidy Baffou·LazyPDF

PDF Metadata Not Updating: Why It Happens and How to Fix It

PDF metadata — the title, author, subject, keywords, creator, and producer fields — is often overlooked until it causes a problem. Metadata appears in file properties, shows up in search results, displays in browser tabs when a PDF is embedded in a webpage, populates form fields in document management systems, and is read by screen readers for accessibility. When metadata changes don't save, or when a PDF shows the wrong title or author, it creates confusion and can cause compliance issues. There are several distinct reasons why PDF metadata might not update. The most common are: the PDF is password-protected and restricts changes, the tool you're using to edit metadata isn't writing it to the correct location in the PDF structure, the document is cached with old metadata by your operating system or browser, or the PDF has both traditional metadata fields and XMP (Extensible Metadata Platform) fields that need to be updated simultaneously. This guide covers all these scenarios and provides step-by-step fixes for each.

Understanding PDF Metadata Locations

PDFs can store metadata in two different places, which is a major source of confusion: **DocInfo dictionary** (traditional): The older metadata format. Stores basic fields: Title, Author, Subject, Keywords, Creator, Producer, CreationDate, ModDate. These are stored as a dictionary in the PDF's document catalog. Most basic metadata viewers and editors work with DocInfo. **XMP metadata** (modern): Adobe introduced XMP (Extensible Metadata Platform) as a more flexible, XML-based metadata standard. PDFs created by Adobe software after 2001 typically contain XMP metadata alongside DocInfo. XMP is richer and more extensible, supporting Dublin Core, PDF-specific, and custom metadata schemas. **The synchronization problem**: When you update metadata using a tool that only writes to DocInfo, the XMP metadata remains unchanged (and vice versa). Applications that read XMP find the old metadata. Applications that read DocInfo find the new metadata. Neither is 'wrong' — they're out of sync. For metadata changes to be universally visible, both DocInfo and XMP must be updated to match. Adobe Acrobat does this automatically. Many other tools only update one or the other.

  1. 1Open the PDF in Adobe Acrobat and check File > Properties — look at both the Description tab (DocInfo) and the Additional Metadata button (XMP).
  2. 2Verify whether the metadata you think you've changed is different from what Acrobat displays.
  3. 3Check if the PDF is password-protected (File > Properties > Security) — protection may prevent metadata editing.
  4. 4Try editing metadata in Acrobat directly: File > Properties > Description — change fields, click OK, then File > Save.
  5. 5If Acrobat shows correct metadata but other applications don't, the other applications may be reading cached data.
  6. 6For discrepancies between DocInfo and XMP, use ExifTool to update both simultaneously (see below).

Fix: Edit Metadata in Adobe Acrobat

Adobe Acrobat Pro and Reader are the most reliable tools for editing PDF metadata because they update both DocInfo and XMP simultaneously. **Basic metadata editing**: 1. Open the PDF in Acrobat 2. File > Properties (Ctrl+D) 3. Click the Description tab 4. Edit Title, Author, Subject, and Keywords fields 5. Click OK 6. File > Save (Ctrl+S) Note: Don't confuse 'Save' with 'Save As'. Some metadata changes are finalized differently. Use both Ctrl+S and also try File > Save As to a new filename to force a full rewrite. **Advanced XMP metadata**: 1. File > Properties > Description 2. Click the 'Additional Metadata' button 3. The XMP dialog shows all metadata fields in a tree structure 4. Expand sections to edit Advanced, IPTC, Camera Raw, and custom fields **Via Acrobat JavaScript** (for batch operations): In the JavaScript console (Tools > JavaScript Console): ```javascript var doc = this; doc.title = 'New Title'; doc.author = 'New Author'; doc.subject = 'New Subject'; doc.keywords = 'keyword1, keyword2'; doc.saveAs(doc.path); ``` This uses Acrobat's built-in JavaScript API to update all metadata at once.

  1. 1Open the PDF in Adobe Acrobat (Reader or Pro).
  2. 2Press Ctrl+D (Windows) or Cmd+D (Mac) to open Document Properties.
  3. 3In the Description tab, click into the Title, Author, Subject, or Keywords fields and make your changes.
  4. 4Click OK to close the dialog.
  5. 5Press Ctrl+S to save — or go to File > Save to confirm the save.
  6. 6Reopen the saved file and check File > Properties to confirm the metadata was written correctly.

Fix: Use ExifTool for Bulk Metadata Updates

ExifTool is a free, powerful command-line tool for reading and writing metadata in almost any file format, including PDF. It correctly updates both DocInfo and XMP metadata simultaneously, making it ideal for bulk operations. **Installation**: - Windows: Download from exiftool.org - macOS: `brew install exiftool` - Linux: `sudo apt install libimage-exiftool-perl` **Basic metadata update**: ```bash exiftool -Title='My Document Title' -Author='John Smith' -Subject='Annual Report' document.pdf ``` **Update multiple files at once**: ```bash exiftool -Title='New Title' *.pdf ``` **Copy metadata from one file to another**: ```bash exiftool -TagsFromFile source.pdf destination.pdf ``` **Clear all metadata**: ```bash exiftool -all= document.pdf ``` **Read current metadata**: ```bash exiftool document.pdf ``` ExifTool creates a backup of the original file (with _original suffix) by default. Use `-overwrite_original` flag to skip backup. For enterprise document management where metadata consistency across thousands of PDFs is required, ExifTool scripts are the standard approach. It can be integrated into document processing pipelines and automated workflows.

  1. 1Install ExifTool for your operating system.
  2. 2Open Terminal (Mac/Linux) or Command Prompt (Windows) and navigate to your PDF folder.
  3. 3Read current metadata: `exiftool document.pdf` — note which fields have incorrect values.
  4. 4Update specific fields: `exiftool -Title='Correct Title' -Author='Author Name' document.pdf`
  5. 5ExifTool creates a backup file (document.pdf_original) — verify the updated file is correct before deleting.
  6. 6For batch: `exiftool -Title='New Title' *.pdf` updates all PDFs in the current directory.

Why Metadata Changes Don't Stick

Sometimes you've edited metadata and saved, but it keeps reverting or the changes don't appear elsewhere. Here are the specific causes: **Password-protected PDFs**: If the PDF has an owner password with editing restrictions, metadata editing may be blocked. Check File > Properties > Security in Acrobat. If editing is restricted, you need the owner password to change the permissions, or use a tool that allows metadata editing with the user password. **OS-level metadata caching**: Windows and macOS cache file metadata (including PDF metadata) for performance. After updating PDF metadata, the OS thumbnail/property cache may still show the old data. Fix: right-click the file > Properties > check if the new metadata shows. If not, try clearing the icon/thumbnail cache (Windows: restart Explorer; Mac: restart). **The wrong field is being read**: Different applications read different metadata fields. Chrome's PDF viewer reads the PDF's title from the document catalog's Title field. Windows Explorer reads from DocInfo. Adobe Acrobat shows XMP. If you updated DocInfo but the application reads XMP, it will still show old data. **Incremental update creating duplicate metadata**: PDFs allow incremental updates where new data is appended to the file without removing old data. Some metadata editors add new metadata values without removing the old entries, resulting in both old and new metadata existing. The viewer picks whichever one it encounters first. Solution: do a full save (Save As) in Acrobat to rewrite the entire PDF and consolidate. **Document information dictionary locked by rights management**: Enterprise DRM and rights management systems can lock metadata fields. Contact your DRM administrator if this applies.

Frequently Asked Questions

How do I remove all metadata from a PDF to ensure privacy?

Use ExifTool: `exiftool -all= document.pdf` removes all metadata. In Adobe Acrobat Pro: go to Tools > Redact > Sanitize Document, which removes metadata, hidden content, and other potentially sensitive information. Alternatively, File > Properties > Description and clear each field manually. For complete metadata removal, also remove document information dictionary fields and XMP metadata. Note that some metadata (creation tool, PDF version) may be regenerated when the file is saved.

My PDF shows the wrong title in browser tabs. How do I fix it?

Browser PDF viewers display the PDF's Title metadata field in the tab. If the title is wrong, update it in Adobe Acrobat: File > Properties > Description > Title field. If the PDF has no title set, browsers may show the filename instead (often looking like 'document-final-v3-PRINT.pdf' — not ideal). Always set a proper title in PDF metadata for PDFs that will be viewed in browsers. ExifTool can also fix this: `exiftool -Title='Proper Document Title' document.pdf`.

Can I update PDF metadata in bulk (hundreds of files) without Acrobat?

Yes, ExifTool is the best tool for bulk PDF metadata operations. A single command can update a specific field across all PDFs in a directory: `exiftool -Author='Company Name' *.pdf`. For different metadata per file, create a CSV file with filenames and metadata values, then use ExifTool's -csv flag to apply different values to each file. This is a common approach for document management teams standardizing metadata across large archives.

After I compress a PDF with LazyPDF, the metadata shows as empty. How to fix?

Ghostscript-based compression may not carry over all original metadata fields. After compression, re-add metadata using ExifTool or by opening in Acrobat and manually setting the fields. Alternatively, use ExifTool to copy metadata from the original to the compressed version: `exiftool -TagsFromFile original.pdf compressed.pdf`. For workflows where metadata must be preserved through compression, use Acrobat Pro's 'Save As Other > Optimized PDF' instead of Ghostscript-based compression.

Need to add document protection while fixing your PDF? LazyPDF's protect tool lets you password-protect PDFs, and our compress tool optimizes file size — both free, no account needed.

Protect Your PDF

Related Articles