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
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.
!include "MUI2.nsh"
OutFile "setup.exe"
!insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH
!insertmacro MUI_LANGUAGE "English"
Section ""
SectionEnd
Is there a simple way to get it to do this?
Thanks for any tips, Alan.