Archive: Problem with .onInstSuccess


Problem with .onInstSuccess
hi

I've got a simple on Install Sucess (i hope, that just doesn't fire after the app has installed. Any prompts or do I need any special configuration to get this to run?

Function .onInstSuccess
ExecWait '"$INSTDIR\application\Runme.exe /S"'
FunctionEnd

Cheers

Lee


Try this:
ExecWait '"$INSTDIR\application\Runme.exe" /S'

Stu


Fan-bloody-tastic!

Thanks! Worked a treat!


Also you want to use Exec as opposed to ExecWait if you want to be able to close the installer with your program running.

Stu