Skip to content
⌘ NSIS Forum Archive

Add custome message on MUI_UNPAGE_WELCOME

2 posts

Venu#

Add custome message on MUI_UNPAGE_WELCOME

Hi all,

Can anyone tell me how to add custom message on MUI_UNPAGE_WELCOME. I tried using the micro "MUI_UNPAGE_WELCOME_TEXT".

Please suggest me soon. its needed badly.

Regards
Venu
glory_man#
Search forum for superwan's thread about uninstaller- reinstaller.
Try it (it was made like in his script):

var MUI_WELCOMEPAGE_TITLE
var MUI_WELCOMEPAGE_TEXT

...

!define MUI_WELCOMEPAGE_TITLE "$MUI_WELCOMEPAGE_TITLE"
!define MUI_WELCOMEPAGE_TEXT "$MUI_WELCOMEPAGE_TEXT"
!define MUI_WELCOMEFINISHPAGE_CUSTOMFUNCTION_INIT "un.init"
!insertmacro MUI_UNPAGE_WELCOME

...

Function "un.init"
StrCpy $MUI_WELCOMEPAGE_TITLE "Title of page"
StrCpy $MUI_WELCOMEPAGE_TEXT "Text on unwelcome page"
FunctionEnd
Maybe some optimization needed. But it should work.