如何在CMD中打开pdf时提供参数?
How to provide parameters while opening a pdf in CMD?
有没有办法给出页码(作为参数)以使用 CMD 中的给定命令打开 pdf,启动“”/max "F:\filename.pdf"。或者有不同的方法?还可以提供哪些参数?
Google是你的朋友.
https://www.google.com.au/search?q=acrobat+viewer+command+line
指向 Adobe 的文档
http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/pdf_open_parameters.pdf
When opening a PDF document from a command shell, you can pass the parameters to the open command using the /A switch with the following syntax:
<Acrobat path> /A "<parameter>=<value>" "<PDF path>"
For example:
Acrobat.exe /A "zoom=1000" "C:\example.pdf"
以后
page=pagenum
Specifies a numbered page in the document, using an integer value. The document’s first page has a pagenum value of 1.
有没有办法给出页码(作为参数)以使用 CMD 中的给定命令打开 pdf,启动“”/max "F:\filename.pdf"。或者有不同的方法?还可以提供哪些参数?
Google是你的朋友.
https://www.google.com.au/search?q=acrobat+viewer+command+line
指向 Adobe 的文档
http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/pdf_open_parameters.pdf
When opening a PDF document from a command shell, you can pass the parameters to the open command using the /A switch with the following syntax:
<Acrobat path> /A "<parameter>=<value>" "<PDF path>"
For example:
Acrobat.exe /A "zoom=1000" "C:\example.pdf"
以后
page=pagenum
Specifies a numbered page in the document, using an integer value. The document’s first page has a pagenum value of 1.