简体   繁体   中英

Acrobat (reader): to open in full screen via command line on Windows

I would like that my PDF document is opened in full screen mode via the command line on Windows. Something like this:

"C:\Program Files\Adobe\Acrobat 8.0\Acrobat\Acrobat.exe" "pagemode=fullscreen" "myfile.pdf"

I do not think that the option fullscreen for the parameter pagemode exists.

I cannot set the document properties of my file myfile.pdf beforehand via Document Properties to open in full screen mode as the PDF file is generated by LaTeXing with a batch file. So everything has to be done via the Windows command line.

PS: The solutions proposed here: How to open a pdf in fullscreen view via command line do not work for Acrobat.

Thanks.

I'm searching for the same thing. i have been able to make the window fit my screen. No fullscreen though.
Example: start "" /max "Acrobat path" /A "parameter=value" "PDF path"

Your case:

start "" /max "C:\Program Files\Adobe\Acrobat 8.0\Acrobat\Acrobat.exe" /A "zoom=100" "myfile.pdf"

PS: The scale value of 100 indicates a zoom value of 100%.

You can specify multiple parameters in a single URL. Separate each parameter with either an ampersand (&) or a pound (#) character.

测试以下内容,我已经用Adobe Reader 10测试了开始“” / max“ C:\\ Program Files Xxxxx.exe” / A“ pagemode = FullScreen”“。pdf”

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM