Archive: How to exclude some path from MUI_PAGE_DIRECTORY


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


Validate the $INSTDIR on page leave (!define MUI_PAGE_CUSTOMFUNCTION_LEAVE DirectoryLeave) or in .onVerifyInstDir.

Stu


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!