Skip to main content
Participant
December 19, 2023
Question

Insert the same metadata to multiple files

  • December 19, 2023
  • 1 reply
  • 2106 views

Hi, I need to insert metadata (always the same) in multiple PDF files. Is it possible to do this in one action for all files, or am I forced to do it for each individual file? I use Adobe Acrobat Pro.

I'm Italian, please sorry for my bad english 

This topic has been closed for replies.

1 reply

try67
Community Expert
Community Expert
December 19, 2023

Yes, this can be done using the Action Wizard.

Which specific metadata properties do you want to set?

Participant
December 19, 2023

I need to enter the following metadata:

- title

- author

- subject

- keywords

 

try67
Community Expert
Community Expert
December 19, 2023

OK, then create an Action that executes this script:

 

this.info.Title = "New Title";
this.info.Author = "New Author";
this.info.Author = "New Author";
this.info.Subject = "New Subject";
this.info.Keywords = "Keyword1,Keyword2,Keyword3";

 

Make sure to tick off the "Prompt User" check-box under the "Execute JavaScript" command, and to add a Save command, and then just run this Action on your files.