Archive: nsis flow problem


nsis flow problem
My installer is made up of mostly custom pages. When the instfiles page is done it stops and requires the user to click next to get to my custom finish page. How can I get the instfiles page to automatically goto the next page when done?


AutoCloseWindow true


AutoCloseWindow true makes the installer window close automatically when instfiles page is completed. When this attribute is not set, the installer will require you to click the next button when the installation is completed, taking you to the finish page(in my case). I would prefer that the installer automatically go to the finish page when completed instead of requiring the next button to get there. Is there a way to do this?


AutoCloseWindow true

will go the next page if there is one.


THis is how it is layed out in my script:

PageEx instfiles
PageCallbacks preInst showInst leaveInst
PageExEnd

Page custom Finish

With AutoCloseWindow true set it does not go to the custom finish page, it just closes the installer.


And it works if you remove AutoCloseWindow? That is weird, the Modern UI uses it too for the finish page.

Please attach a script that compiles on every system.