Archive: text at the end of installation?how?


text at the end of installation?how?
Hello,
i have a script which install 4 products,
we choose if we want install all the product or only one by check box. for the product number 2 for example ,at the end of the installation of this product, i want a page with text where i explain all i want.
I use modernui
I test with MUI_INSTFILESPAGE_FINISHHEADER_TEXT
or MUI_FINISHPAGE_RUN_TEXT but i have same error "...don't find macro, aborting processus..."
example of my script:
;Installer Sections
Section "the product number 2" product2
SetOutPath "$INSTDIR"
File "myfile2.exe"
execwait "$INSTDIR\myfile2.exe"
!insertmacro MUI_FINISHPAGE_RUN_TEXT "my text"
SectionEnd

Section "the product number 3" product3
SetOutPath "$INSTDIR"
File "myfile3.exe"
execwait "$INSTDIR\myfile3.exe"
SectionEnd

after i test with a message box but my text is very long and i don't know how to pass at the next line. msgbox put all text on same line.

of course i need help.
thanks and sorry for my english


Hi moxo,

Create a custom page with the READONLY MULTILINE textbox and add it as a last page(finish page) at the end of the installation process. set the long text with $\r$\n for a new line character.