Skip to content
⌘ NSIS Forum Archive

mui uninstall

2 posts

Guest#

mui uninstall

hello. I have a problem 😁
I modify script my friend but i have a terrible problem.
install macro pagess working fantastic, but uninnaler pages do not working. Its mean i have:
!include "MUI.nsh"
!insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_PAGE_LICENSE licence.txt
!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_LANGUAGE "English"
!insertmacro MUI_PAGE_FINISH
and define functions...
and uninstall macro...

!insertmacro MUI_UNPAGE_WELCOME
!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_INSTFILES
!insertmacro MUI_UNPAGE_FINISH

and welcome and finish page do not display :|
i dont know why. in MUI manuale was only

MUI_UNCONFIRMPAGE_TEXT_TOP text
Text to display on the top of the page.

MUI_UNCONFIRMPAGE_TEXT_LOCATION text
Text to display next to the uninstall location text box.

and not more. Why doesnt it display?
Please help.

PS. sorry for my english language 😁
Afrow UK#
You should follow the steps as described in the Modern UI readme. You must insert the language AFTER you insert the page macro's.

-Stu