How do I detect silent install?

installation, nsis, silent, windows

Solution

IfSilent

or if you are using the logiclib:

${If} ${Silent} ...

Problem

If an NullSoft Install System installer is launched with the /S switch, how can I detect it from the script?

Original source