<br>Hello,<br><br>I'm trying to figure out the proper way of passing parameters to my program that is being run by WINE.&nbsp; I've been trying different things I've found in Google, but none have seemed to work yet.&nbsp; The parameters work in a Windows environment, so I do believe the program is okay.&nbsp; This is on a SUSE/SLES 9 machine using WINE .917.&nbsp; If I want to pass the parameter &quot;/SLEEP:10&quot; to a program called &quot;
myapp.exe&quot;, how would I do it?&nbsp; I've found and tried the following formats, and none have worked so far:<br><br>&nbsp;&nbsp; wine myapp.exe /SLEEP:10<br><br>&nbsp;&nbsp; wine /full/path/myapp.exe /SLEEP:10<br><br>&nbsp;&nbsp; wine &quot;/full/path/myapp.exe /SLEEP:10&quot;
<br><br>&nbsp;&nbsp; wine myapp.exe -- /SLEEP:10<br><br>&nbsp;&nbsp; wine myapp.exe -- myapp.exe /SLEEP:10<br><br><br>I've seen the &quot;--&quot; in many examples online, but have not found it in the documentations so far.&nbsp; Some of what I've read indicated that BOTH wine and my program would try to use ALL the parameters, except for the ones that come after the &quot;--&quot; (which would only go to my program).
<br><br>Any suggestions?<br><br>thanks!<br><br>