The Silent Install options for the NSIS installer

/SRuns the installer in silent mode
/SDComplitely silent mode. Supress messageboxes.
/DSpecifies the installation directory.

Example

Silently install the program:

setup.exe /S

Silently install the program in to directory C:\Program Files\Setup:

setup.exe /S /D="C:\Program Files\Setup"