Skip to content
⌘ NSIS Forum Archive

How to exclude some path from MUI_PAGE_DIRECTORY

3 posts

prz#

How to exclude some path from MUI_PAGE_DIRECTORY

I have the need to exclude some paths in the MUI_PAGE_DIRECTORY when the user choose where to install the application.

How can I do that?
Thank you
Afrow UK#
Validate the $INSTDIR on page leave (!define MUI_PAGE_CUSTOMFUNCTION_LEAVE DirectoryLeave) or in .onVerifyInstDir.

Stu
prz#
Originally posted by Afrow UK
Validate the $INSTDIR on page leave (!define MUI_PAGE_CUSTOMFUNCTION_LEAVE DirectoryLeave) or in .onVerifyInstDir.

Stu
Thank you very much!