NSIS: How to press "Next" button automatically when MUI_PAGE_INSTFILES is complete

StackOverflow https://stackoverflow.com/questions/23255897

  •  08-07-2023
  •  | 
  •  

문제

I'm making an installer with NSIS and have the following pages:

!insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH

On each page must press the "Next" button.

How to press "Next" button automatically when installation is complete in MUI_PAGE_INSTFILES?

도움이 되었습니까?

해결책

Have you defined MUI_FINISHPAGE_NOAUTOCLOSE in your script?

From the manual:

MUI_FINISHPAGE_NOAUTOCLOSE

Do not automatically jump to the finish page, to allow the user to check the install log.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top