Skip to content
⌘ NSIS Forum Archive

Cancel on MUI Finish Page

3 posts

rainwater#

Cancel on MUI Finish Page

Does anyone know how to remove the cancel button on the MUI finish page? The button doesn't serve a purpose there but I can't find an option to remove it.
Red Wine#
  !define MUI_PAGE_CUSTOMFUNCTION_PRE 'FinPre'
!insertmacro MUI_PAGE_FINISH
...................................
....................................

Function FinPre
WriteINIStr '$PLUGINSDIR\iospecial.ini' 'Settings' 'CancelShow' '0'
FunctionEnd
Comm@nder21#