From an NSIS script (located at C:\nsis\
for example), I execute an external program (let's say something.bat
) with some paramerters:
Exec '"Z:\draft\something.bat" $param1 $param2'
something.bat
is suppoed to rename the directory C:\nsis
. My question is, how can I tell Exec
to launch something.bat
inside Z:\draft\
and not C:\nsis\
? Because, it can't rename the directory otherwise.
Thanks.