Skip to content
⌘ NSIS Forum Archive

Modern UI does not allow user to click 'Next' on Install page

4 posts

alan65#

Modern UI does not allow user to click 'Next' on Install page

Hi,
I have a question about the Modern UI Wizard behavior when a Finish page follows an InstFiles page.
The Instfiles page is automatically - i.e. without the user being able to click Next - followed by the Finish page.

For example, with the following minimal script


!include "MUI2.nsh"
OutFile "setup.exe"
!insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH
!insertmacro MUI_LANGUAGE "English"

Section ""
SectionEnd
I would rather have the Instfiles page stay open, so that the user can review what's been installed before clicking on 'Next' to go to the Finish page.

Is there a simple way to get it to do this?

Thanks for any tips, Alan.
alan65#
MUI_FINISHPAGE_NOAUTOCLOSE is exactly what I needed. Don't know how I missed that in the docs. Thanks very much for the help. Alan.