Skip to content
⌘ NSIS Forum Archive

conditional execute installation

3 posts

giugio#

conditional execute installation

hy.
Ho does i visualize page so conditional?
ad es :
i have 1 checkbox in a custom page and if the checkbox is pressed by the uset i display page1 else i display page2 ecc...
thanks
galevsky#
If you call "abort" in a custom page, it won't display the page and go to the next one.

So, you can have such a simple test on top of your page functions:


${If} your_condition
abort ;;this page is skipped
${EndIf}
Gal'