I'm trying to create a NSIS installer for a plugin I'm working with, but I want it to be as "hands free" as possible. Specifically, I do not want the "click here to close" at the end of the installer; instead, I want the license to come up and when they click "agree" it installs and closes.

I can do this with a silent install, except that the license page doesn't show up either; Is there a way to make the install be silent except for the license page?

link|improve this question

67% accept rate
feedback

1 Answer

up vote 1 down vote accepted

In silent mode only .onInit and Sections are executed, the pages are not executed and there is no way to execute them. To pull this off you would have to fake it with a "custom silent mode":

!include LogicLib.nsh

var mySilent

Function .onInit
${If} ${Silent}
    StrCpy $mySilent 1
    SetAutoClose true ;Auto close InstFiles page
    SetSilent normal
${EndIf}
FunctionEnd

Function SkipInSilent
${IfThen} $mySilent <> 0 ${|} Abort ${|}
FunctionEnd

Page License
Page Directory SkipInSilent
Page Components SkipInSilent
Page InstFiles

Section
SectionEnd
link|improve this answer
I don't actually ever want to do a "non-silent" mode, I just don't ever want to not display the EULA; I want it to behave the same way in all cases. If I use the example you provide, how do I make it not wait for me to click the "close" button when they are done? (InstFiles normally waits for a click, no?) – taxilian Aug 22 '11 at 21:23
1  
@Taxilian: Remove the if check in .onInit, but keep SetAutoClose true and SetSilent normal – Anders Aug 22 '11 at 21:43
ahh; I missed the "SetAutoClose" bit. thanks! – taxilian Aug 22 '11 at 21:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.