Archive: Modern UI Uninstall Text


Modern UI Uninstall Text
How do I edit the text on the welcome page for the uninstaller (Modern UI)? I have the following:

!define MUI_WELCOMEFINISHPAGE_BITMAP ".\isidebar.bmp"
!define MUI_UNWELCOMEFINISHPAGE_BITMAP ".\usidebar.bmp"
!define MUI_WELCOMEPAGE_TITLE "mailNetwork BOSS Suite 2005 BETA 1"
!define MUI_WELCOMEPAGE_TITLE_3LINES
!define MUI_WELCOMEPAGE_TEXT "The mailNetwork BOSS Suite 2005 is a collection of utilities ... etc"
!insertmacro MUI_PAGE_WELCOME

!define MUI_WELCOMEPAGE_TITLE "mailNetwork BOSS Suite 2005 BETA 1 REMOVE"
!insertmacro MUI_UNPAGE_WELCOME

However, it still only keeps the default text when the uninstaller runs - the installer is fine.
I've tried replace the line above !insertmacro MUI_UNPAGE_WELCOME with !define MUI_UNWELCOMEPAGE_TITLE ... and !define MUI_WELCOMEPAGE_UNTITLE ..., but still only get the standard text.

The MUI docs says "Note: There is no difference between installer and uninstaller page settings." but evidently there is.


Use !define MUI_WELCOMEPAGE_TEXT again before !insertmacro MUI_UNPAGE_WELCOME

-Stu