Archive: How to auto close MUI_PAGE_INSTFILES


How to auto close MUI_PAGE_INSTFILES
  I have a stub installer that calls upon a second installer. I would like for the second installer to auto close itself out once its done installing files.

I'm using MUI and the MUI_PAGE_INSTFILES page as my last page. I do not want a finish page on the second installer.

What's the best way to do this?

Thanks,

Jesse



;--------------------------------

;Configuration

;General
OutFile "..."

;automatically close the installer when done.
AutoCloseWindow true
>
and dont define any page after that :D

Worked like a charm! thanks a bunch!

Jesse