The title says it all, how do I set the text for the uninstaller welcome page in a modern UI installer/uninstaller? No luck with this:
!define MUI_UNWELCOMEPAGE_TEXT "awef"
!insertmacro MUI_UNPAGE_WELCOME
Thanks!
NSIS Modern UI Uninstaller Welcome Page Text
5 posts
There is no such thing as MUI_UNWELCOMEPAGE_TEXT, just use MUI_WELCOMEPAGE_TEXT.
From the MUI docs:
From the MUI docs:
The same settings can be used for installer and uninstaller pages.
So I assume I set the setting before the insertmacro for the relevant page, in which case order matters right?
Yes, the order matters, define before insert.
Again, from the docs:
Again, from the docs:
Page settings apply to a single page and should be set before inserting a page macro. The same settings can be used for installer and uninstaller pages. You have to repeat the setting if you want it to apply to multiple pages.
Thanks!