"Open with" - How append "parameter" to .exe?

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
cadu
Posts: 287
Joined: 18 Mar 2012 21:50

"Open with" - How append "parameter" to .exe?

Post by cadu »

Hi,

I'd appreciate help.
The following line is set in "Open with" (snapshot: http://i.imgur.com/wEYVPeP.png):
jpg;jpeg;png>C:\Program Files\Software.exe

I tried to add the parameter /develop to the line bove, but it didn't work:
jpg;jpeg;png>C:\Program Files\Software.exe /develop

How append "parameter" to .exe properly?

Thank you!
Cadu

highend
Posts: 14996
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: "Open with" - How append "parameter" to .exe?

Post by highend »

Untested but this should be one way...

Code: Select all

jpg;jpeg;png>"""C:\Program Files\Software.exe"" /develop"
or

Code: Select all

jpg;jpeg;png>'"C:\Program Files\Software.exe" /develop'
These are single outside quotes and double quotes for the application!
One of my scripts helped you out? Please donate via Paypal

cadu
Posts: 287
Joined: 18 Mar 2012 21:50

Re: "Open with" - How append "parameter" to .exe?

Post by cadu »

Many thanks for assistance!
The following command worked:

Code: Select all

jpg;jpeg;png>"C:\Program Files\Software.exe" /develop

Post Reply