hi,
How to get return value code after installion is completed?
Thanks,
Jayam
How to get return value code after installation is finished
3 posts
SetErrorLevel
From which installer? Are you running another installer from your own installer or are you talking of your own installer?
If it's another installer, use ExecWait and pass a variable to be filled with the return code as the second parameter.
If it's another installer, use ExecWait and pass a variable to be filled with the return code as the second parameter.
If it's your installer, run it in a cmd.exe with start /wait and use %ERRORLEVEL% later.ExecWait "another installer.exe" $0