Archive: Loading html file in the end


Loading html file in the end
Hi, I want to make an installer that if the setup is completed, or after the user hit close button, it will open a html file . I have tried this with ExecWait but it seems that the html file comes up too soon (before the setup is completed). The progression bar has not reached the end yet! How do we handle this? Thanks!

Regards,


Use this:

Function .onInstSuccess
ExecShell open '$INSTDIR\myfile.html'
FunctionEnd


Ow, you`re the hero again, rainwater. Thanks so much!