我正在寻找一种如何使用 Adobe 和 Foxit 或 Windows 的命令行打开 pdf 文件的方法。
注意:这不是双重主题https://stackoverflow.com/questions/6557920/how-to-open-a-pdf-in-fullscreen-view-via-command-line因为标记的答案对我来说不起作用。
答案1
在使用命令行之前,只需打开程序 AcroRd32.exe/Acrobat.exe,然后转到Edit=> preferences=> Full Screen
并取消勾选Current document
,然后您就可以使用命令行如下:
start "" /max "C:\Program Files Xxxxx.exe" /A "pagemode=FullScreen" "yourfile direction and name.pdf"
答案2
对于 Foxit Reader,命令为:
"[path_to_executable]Foxit Reader.exe" <path_to_your_pdf>
。例如,在我的 Windows 上,命令为:"C:\Program Files (x86)\Foxit Software\Foxit Reader\Foxit Reader.exe" C:\Users\Paulius\Desktop\mcs.pdf
。
我没有 Adobe Reader 来测试,但我相信相同的命令(不同的可执行文件)应该可以工作。