如何通过命令行在全屏视图中打开pdf

时间:2011-07-02 15:37:15

标签: windows command-line acrobat

我已经能够通过命令行打开pdf文档了: 启动test.pdf

但是我想通过命令行以全屏模式打开它,有没有人知道怎么做?

[编辑] 我需要一个Windows命令......

8 个答案:

答案 0 :(得分:16)

这应该这样做。

start "" /max "c:\nameofpdf.pdf"

这样做的好处是,如果用户使用的是非adobe reader的其他pdf文档阅读器,它应该可以正常工作。它应该只使用机器上的默认pdf阅读器。

答案 1 :(得分:4)

Windows 10:

explorer.exe "file:\\path\to\file.pdf"

答案 2 :(得分:1)

我已经使用Adobe Reader 10测试了以下内容:

start "" /max "C:\Program Files Xxxxx.exe" /A "pagemode=FullScreen" ".pdf" 

答案 3 :(得分:0)

Acrobat.exe /A "zoom=1000" "C:\example.pdf"

http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/pdf_open_parameters.pdf

请注意,您需要进入acrobat目录才能打开该文件。

答案 4 :(得分:0)

您没有提到您正在使用的操作系统。 对于Linux:

  

evince -f“filename”

OR

  

xdg-open“filename”

答案 5 :(得分:0)

在使用命令行之前,只需打开 AcroRd32.exe / Acrobat.exe 并转到Edit => Preferences => Full Screen并取消选中仅限当前文档。然后您可以使用命令行作为

start "" /max "C:\Program Files Xxxxx.exe" /A "pagemode=FullScreen" "yourfile direction and name.pdf"

答案 6 :(得分:0)

转到adobe文件夹,选择acrord32.exe并为其提供您要打开的filename路径。 adobe PDF viewer在新窗口中启动。

答案 7 :(得分:0)

从 cmd (Windows 10) 启动 Foxit PDF Reader: 一)

START FoxitReader.exe "E:\..\myfile.pdf" /A zoom=106% page=1

b)

"<full path to foxit reader exe file>" "<full path to pdf file>" /A zoom=106% page=1