如何通过命令行在全屏视图中打开pdf
问题描述:
我已经能够通过命令行打开一个pdf文档:
start test.pdf
I have been able to open a pdf document through command line by using: start test.pdf
但我想打开它
[edit]
我需要一个windows命令...
[edit] I need a windows command...
答
这应该可以。
start "" /max "c:\nameofpdf.pdf"
工作,如果用户正在使用其他PDF文档阅读器不是Adobe Reader。它应该只使用机器上的默认pdf阅读器。
This has the advantage that it should work if the user is using other pdf document readers that are not adobe reader. It should just use the default pdf reader on the machine.