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

Viewed 77980

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?

8 Answers

To launch Foxit PDF Reader from cmd (Windows 10): a)

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
Related