I have the following simple nsh script I include in my build:
!include MUI2.nsh
!insertMacro MUI_PAGE_WELCOME
!insertMacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_FINISH
The installer display the MUI_PAGE_FINISH before installing, when I press close button installation is made and that's it (installation is even good).
I would like to order pages to have Welcome, Directory choice, pressing install and then having finish page.
The installer display the
MUI_PAGE_FINISH
before installing, when I press close button installation is made and that's it (installation is even good). I would like to order pages to have Welcome, Directory choice, pressing install and then having finish page.Even if I had
MUI_PAGE_INSTFILES
:Same behaviour. Any idea?