Page 1 of 1

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

Posted: 18 Feb 2017 19:55
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

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

Posted: 19 Feb 2017 00:19
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!

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

Posted: 19 Feb 2017 13:06
by cadu
Many thanks for assistance!
The following command worked:

Code: Select all

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