Archive: Launch exe with parameters


Launch exe with parameters
Hi,

I need make a NSIS installer that launch an exe with any parameters (max 5).
Can you give me any suggestions?

Thanks, Lorenzo.


Use

Exec '"file.exe" "parameter 1" "parameter 2"'

-Stu


Thanks,

but is it possible launch a command in silent mode? If I develop a silent installer, this launch the command with DOS windows.

Regards, Lorenzo.


Use nsExec::Exec
If you want the details to be placed into the install files window, use nsExec::ExecToLog.

-Stu


nsExec
It's possible use ExecWait in silent mode. For Exec in silent mode, I use nsExec.
Thanks.