Archive: installer notes - simple NSIS question but something I can't find an answer to


installer notes - simple NSIS question but something I can't find an answer to
How do I insert some installer notes that are shown before the license agreement? I can't figure it out from the manual. I know this is a simple question but I can't find the answer anywhere.


you can do so using an InstallOptions page, refer to the manual


Also there some PageEx functions.


In the end i created a second license page (i'm using the modern UI)

If anyone is interested, here is the code I used:

!define MUI_PAGE_HEADER_TEXT "Information"
!define MUI_PAGE_HEADER_SUBTEXT "Please read the following important information before continuing."
!define MUI_LICENSEPAGE_TEXT_TOP "When you are ready to continue with Setup, click Next."
!define MUI_LICENSEPAGE_TEXT_BOTTOM " "
!define MUI_LICENSEPAGE_BUTTON "Next >"
!insertmacro MUI_PAGE_LICENSE "C:\notes.txt"


that's shurely the best way to go :)