My application generates between 35 and 55 PDF files of which I have to automatically print four copies.
All these files are in a single folder.
My requirement is to use a batch file to print four copies of each file.
I have Adobe Acrobat Reader installed.
How do I do this?
Adobe Reader is only capable of printing a single copy directly. However, nothing prevents you from looping and printing it 4 times. It may take longer, though, since the document has to be sent to the printer four times.
From the Acrobat SDK Developer FAQ:
So you can probably use something like this:
Just insert the appropriate values for the missing arguments.
You can use pdfprint.exe (third party utility) to achieve the purpose. We are using the same to print bunch of pdf files generated at specified location. You can write batch file whcih accepts parameter like printer name,no of copies,pdf file FULL PATH,log file name to read status,and orientation L-landscape or portrait and call batch file from some appliction like .net.
We have batch file written as below:
Please let me know for any problem. Have a nice day.