Archive: help verify my code - execwait parameters


help verify my code - execwait parameters
Hi,

I would like to run EXE file with ExecWait with few parameters, one of them should be with quotes.

the original line for running it correctly within CMD is:


myfile.exe /param1=text1 /param2="text2=123234" /param3=text3 /param4


if I am not wrong about param2, my NSIS line looks like:

ExecWait '"$PLUGINSDIR\myfile.exe" /param1=text1 /param2="text2=123234" /param3=text3 /param4'


my concern is about the quotes in param2, and will be glad to have your review for it,

Thx
G

Looks good.

Stu


Stu
thx for that, I have no way to check it otherwise and you helped a lot :)