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

问题描述:

我已经能够通过使用以下命令通过命令行打开pdf文档: start test.pdf

I have been able to open a pdf document through command line by using: start test.pdf

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

But I would like to open it in full screen mode via command line, does anyone have any idea how to do so?

这应该做到.

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

这样做的好处是,如果用户使用的不是Adobe Reader的其他pdf文档阅读器,它应该可以工作.它应该只使用机器上的默认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.