I am trying to open several PDF documents using a simple batch file:
ECHO OFF
CLS
cd Program Files\\Adobe\\Reader 9.0\\Reader
Acrord32.exe C:\\Users\\BW1.pd
Thank you!
Using start did the trick. I had to use start as many times as the number of pdf documents I want to open. For some reason
start acrord32.exe 1.pdf 2.pdf 3.pdf
opens only the first document. So I guess Acrobat reader might not allow for more files on the command line.
I rally appreciate your answers.