Archive: Pause installation to view details in MUI_PAGE_INSTFILES window


Pause installation to view details in MUI_PAGE_INSTFILES window
Is there a way to pause the installation program on the progress window so I can review the details? It disappears so fast and the finished page opens. Using a messagebox is not good to stop it because the windows are disabled and not scrollable. I could not find info in the forum or the wiki. For example, snippets of code I have are,


!define MUI_PAGE_CUSTOMFUNCTION_PRE SelectInstFiles
!define MUI_PAGE_CUSTOMFUNCTION_LEAVE ValidateInstFiles
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH

Section /o "Option" SecCore
SetDetailsView show
SectionEnd
Function SelectInstFiles
FunctionEnd
Function ValidateInstFiles
MessageBox MB_OK "Move the message box to review the \
details in the window behind. Unfortunately the window can not be scrolled." IDOK
FunctionEnd

Use:
!define MUI_FINISHPAGE_NOAUTOCLOSE
For uninstall:
!define MUI_UNFINISHPAGE_NOAUTOCLOSE


Define MUI_FINISHPAGE_NOAUTOCLOSE above all page macros.


Thanks a lot.