PDA

View Full Version : Need Help! How skip uninstaller's pages?


robotmp3
8th November 2006, 09:30
Hi!

I have a follow problem:
I need skip these pages

!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_COMPONENTS
!insertmacro MUI_UNPAGE_INSTFILES

but if I use !define MUI_PAGE_CUSTOMFUNCTION_PRE for these pages, I get compile error

In forum I found only for installer's pages.

Is it possible, to skip these pages?

Thanks for any help

glory_man
8th November 2006, 14:53
Unistaller function name must begin with "un."
So use
!define MUI_PAGE_CUSTOMFUNCTION_PRE "un.function"

robotmp3
8th November 2006, 17:12
Thank you, glory_man, it works! How could I forget this "un."? :)