Windows – Is it possible to automate bulk PDF printing with specific settings in Adobe Reader

adobe-acrobatautomationprintingwindows

Around ance a week, I need to bulk print a couple of documents with my desk jet printer (it doesn't support automated both sides printing). I like the Booklet printing feature in Adobe Reader, and I normally use it. Since the printer doesn't support automated both sides printing, what I normally do is print all of the document using Booklet printing features, first using "Front pages only", and then reverse the paper and print everything again using "Back pages only"

This is the setting I am talking about

Is it possible to automate this task, for example using a batch file, so that I don't have to manually open, and select printing options for each document using Adobe Reader? Being able to do this will save really a lot of time for me!

Best Answer

You could automate the printing in three steps, using a .bat file.

  1. Use the free PDFtk toolkit to create two new PDF files, one containing the odd pages and the other the even ones.
    The parameters to use are cat even and cat odd.

  2. Use the pause command to wait while you turn the paper around

  3. Print using your preferred PDF processor.
    As Acrobat /p parameter just goes directly to the Print dialog, you could use instead the free Foxit Reader, using its '/p' command-line parameter to print to the printer.

Related Question