How to open a pdf in fullscreen view via command line on Windows?

前端 未结 7 1887
一整个雨季
一整个雨季 2021-02-08 03:00

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

7条回答
  •  庸人自扰
    2021-02-08 03:43

    This should do it.

    start "" /max "c:\nameofpdf.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.

提交回复
热议问题