These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

Run Batch Jobs on a schedule

nbk14bz
Registered: Feb 11 2008
Posts: 5

Hi,

Once I have created a batch job is there a way to schedule it to run at a designated time?

I run .VBS and .bat files with windows scheduler and I'm wondering if there is a way to do this with a acrobat batch job.

Thanks,

Josh

My Product Information:
Acrobat Pro 8.1, Windows
thomp
Expert
Registered: Feb 15 2006
Posts: 4411
No, batch sequences are meant to be run by a person actually pushing the buttons. This is to deter Acrobat from being used as a server. However, you could write a custom plug-in to do this. Or you could automate acrobat a different way, for example, with a custom VB application that could be scheduled.

Or you could get a 3rd party program that is meant to be automated, like SWITCH from www.gradual.com or PDF Enhancer from www.apago.com

Thom Parker
The source for PDF Scripting Info
www.pdfscripting.com
Very Important - How to Debug Your Script

nbk14bz
Registered: Feb 11 2008
Posts: 5
I'm good with VB, but I can't find anything in the adobe SDK where it talks about batches is there another reference that would be better?
thomp
Expert
Registered: Feb 15 2006
Posts: 4411
There isn't. If you choose to go this route you'll need to essentially create you're own batch process. Opening the PDF files in Acrobat and using the IAC API to manipulate the documents, save, and close them.

If you already have the SDK docs then look through the Interapplication Communication Reference and the guide to find the PDF operations you want to perform.

This methodology takes a bit more work that creating a batch sequence, but it is infinately more controlable.

Thom Parker
The source for PDF Scripting Info
www.pdfscripting.com
Very Important - How to Debug Your Script