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

Copy batch sequences to new PC

mark99k
Registered: Apr 28 2010
Posts: 24
Answered

Getting a new PC next week & dreading all the reinstalls. Dread #37 is, how can I save all the batch sequences I've written, to export them to the new PC?
 
Program version will be the same (AA 9 Pro).
 
Thanks in advance.
 
MT

MT

My Product Information:
Acrobat Pro 9.0, Windows
try67
Expert
Registered: Oct 30 2008
Posts: 2398
Accepted Answer
Batch sequences are saved as .sequ files in 2 specific folders on your machine.
You can either run this code from the console to find these folders (your batches should be under the "user" one), or simply search your computer for *.sequ files. The code is:

app.getPath("user","javascript");
app.getPath("app","javascript");

- AcrobatUsers Community Expert - Contact me personally at try6767 [at] gmail [dot] com
Check out my custom-made scripts website: http://try67.blogspot.com

mark99k
Registered: Apr 28 2010
Posts: 24
I'm sorry, I didn't mean to click Accept just yet: What does "run... from the console" mean? Was I supposed to learn Java before using Acrobat batch sequences? Where would I use those lines of program code?

MT

try67
Expert
Registered: Oct 30 2008
Posts: 2398
Sorry, I assumed you knew how to do that. No need to learn JavaScript, just follow these instructions:
Press Ctrl+J to open the JS console. Delete whatever the contents are.
Paste each line, select it and press the Enter key at the bottom-right of the keyboard.
It will display the path in the same console.

- AcrobatUsers Community Expert - Contact me personally at try6767 [at] gmail [dot] com
Check out my custom-made scripts website: http://try67.blogspot.com

mark99k
Registered: Apr 28 2010
Posts: 24
Ahh very cool. Thanks so much.

MT