Skip to content
⌘ NSIS Forum Archive

How to disable the run app checkbox on MUI_FINISHPAGE

3 posts

prz#

How to disable the run app checkbox on MUI_FINISHPAGE

Is possible to disable the checked checkbox on the MUI_FINISHPAGE?
My app must install in administrator mode and in some installation types needs the first run in admin mode to complete the configuration.

Thx
Afrow UK#
Are you a developer who uses NSIS to distribute your application? Are you a Winamp plug-in developer who wants to use NSIS to distribute your plug-in? Have suggestions for other people like you? This is the place.

Except use EnableWindow instead of ShowWindow.

-Stu
prz#
Thanks, but I found an alternative.
I call a function defined with MUI_WELCOMEFINISHPAGE_CUSTOMFUNCTION_INIT where I disable the state of "Field 4" of ioSpecial.ini.
I haven't found any reference of this Field 4, but it works so the application checkbox is checked but not checkable.

Bye