To open a PDF on page 100, follow these steps:
<path to Adobe Reader> /A "page=100" "<Path To PDF file>"
If you need more than one argument, highlight them with &
I use the following in a batch file to open the book that I am reading on the page I was on.
C:\Program Files\Adobe\Reader 10.0\Reader\AcroRd32.exe /A "page=149&pagemode=none" "D:\books\MCTS(70-562) ASP.Net 3.5 Development.pdf"
The best command line argument list for Adobe Reader I've found is here. http://partners.adobe.com/public/developer/en/acrobat/PDFOpenParameters.pdf
This is for version 7, but all the arguments I tried worked.
As for closing the file, I think you will need to use the SDK, or if you open the file from the code, you can close the file from the code as soon as you are done with it.
TheLukeMcCarthy Mar 27 '11 at 18:14 2011-03-27 18:14
source share