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:
if I am not wrong about param2, my NSIS line looks like:
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,
ExecWait '"$PLUGINSDIR\myfile.exe" /param1=text1 /param2="text2=123234" /param3=text3 /param4'
Thx
G