Archive: MUI2 and silent mode


MUI2 and silent mode
Hello,

I try to turn my script (MUI2) with the /S parameter.
But how do for not display the pages like MUI_PAGE_WELCOME (

!insertmacro MUI_PAGE_WELCOME
)
Thank ,
Christophe

/S should work fine. You are using it on the built exe, right? Note it is case sensitive.

Stu


Yes thanks

I found it was also this :

Function .onInit
IfSilent 0 +2
SetSilent silent
...

That doesn't actually make sense. That will just set silent mode if it is already in silent mode... what is the need for that?

Stu