How to open pdf file in full screen mode via command line

I managed to open the PDF document through the command line using: start test.pdf

But I would like to open it in full screen via the command line, does anyone know how to do this?

[edit] I need a windows command ...

+5
source share
7 answers

That should do it.

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

This has the advantage that it should work if the user uses other PDF documents that are not Adobe readers. It should just use a standard PDF reader on the machine.

+14
source

Windows 10:

explorer.exe "file:\\path\to\file.pdf"

+4
source

, . Linux:

evince -f "filename"

xdg-open "filename"

+1

Adobe Reader 10:

start "" /max "C:\Program Files Xxxxx.exe" /A "pagemode=FullScreen" ".pdf" 
+1
0

AcroRd32.exe/Acrobat.exe Edit => Preferences => Full Screen .

start "" /max "C:\Program Files Xxxxx.exe" /A "pagemode=FullScreen" "yourfile direction and name.pdf"
0

adobe, acrord32.exe filename, . Adobe Adobe Reader .

.

0
source

All Articles