Archive: Welcome Page


Welcome Page
I Am very new NSIS, I have existing Instalable (EXE) created by NSIS,

which have some welcome message, now I want to change welcome message. How can I change it
This window have "Next" and "Cancel" button.
I have following code

# Installer pages
#Welcom Page
!insertmacro MUI_PAGE_WELCOME


# License page
!insertmacro MUI_PAGE_LICENSE "resources\EULA.rtf"


Thanks
Jyoti


!define MUI_WELCOMEPAGE_TITLE "Run SQL Install"
!define MUI_WELCOMEPAGE_TEXT "Click next to run the SQL installation"
!insertmacro MUI_PAGE_WELCOME

should be something like that for the Welcome Message


You can find this information, and a lot more related things, in the MUI readme:
http://nsis.sourceforge.net/Docs/Mod...UI/Readme.html


Welcome Page
whourdady' solutuion worked. Thanks lot. Also I will go through file:///C:/Program%20Files/NSIS/Docs/Modern%20UI%202/Readme.html link.