hyounis
hyounis

Reputation: 4579

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

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?

Upvotes: 19

Views: 96520

Answers (8)

rahul-ahuja
rahul-ahuja

Reputation: 1424

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

Upvotes: 0

HMM
HMM

Reputation: 29

Go to the adobe folder, select acrord32.exe and provide it with path of filename you want to open. The adobe PDF viewer starts in a new window.

Upvotes: 0

Shaolin072
Shaolin072

Reputation: 91

Windows 10:

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

Upvotes: 9

Beshoo
Beshoo

Reputation: 11

I've tested the following with Adobe Reader 10:

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

Upvotes: 1

Bashar Magzoub
Bashar Magzoub

Reputation: 1

Before using command line just open AcroRd32.exe/Acrobat.exe and go to Edit => Preferences => Full Screen and uncheck on Current document only. Then you can use the command line as

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

Upvotes: 0

user553947
user553947

Reputation:

You didn't mention which OS you are using. For Linux:

evince -f "filename"

OR

xdg-open "filename"

Upvotes: 1

David Steele
David Steele

Reputation: 3461

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.

Upvotes: 29

Kevin Bowersox
Kevin Bowersox

Reputation: 94479

Acrobat.exe /A "zoom=1000" "C:\example.pdf"

http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/pdf_open_parameters.pdf

Please note you need to be in your acrobat directory to open the file.

Upvotes: 0

Related Questions