Difference between revisions of "NSIS: Nullsoft Scriptable Install System"
From WPKG | Open Source Software Deployment and Distribution
m (NSIS moved to NSIS: Nullsoft Scriptable Install System: There was already a link prepared I didn't see...) |
|||
Line 1: | Line 1: | ||
You can use the following command line switches (from [http://nsis.sourceforge.net/Which_command_line_parameters_can_be_used_to_configure_installers NSIS FAQ]) to customize your installation: | You can use the following command line switches (from [http://nsis.sourceforge.net/Which_command_line_parameters_can_be_used_to_configure_installers NSIS FAQ]) to customize your installation: | ||
− | /S | + | * /NCRC disables the CRC check, unless CRCCheck force was used in the script. |
− | + | * /S runs the installer or uninstaller silently. | |
− | /D | + | * /D sets the default installation directory ($INSTDIR), overriding InstallDir and InstallDirRegKey. It must be the last parameter used in the command line and must not contain any quotes, even if the path contains spaces. Only absolute paths are supported. |
− | + | ||
− | + | ||
If command line options don't work, they are most likely disabled by the author of the installer. | If command line options don't work, they are most likely disabled by the author of the installer. | ||
[[Category:Documentation]] | [[Category:Documentation]] | ||
[[Category:Installer formats]] | [[Category:Installer formats]] |
Revision as of 04:39, 23 June 2008
You can use the following command line switches (from NSIS FAQ) to customize your installation:
* /NCRC disables the CRC check, unless CRCCheck force was used in the script. * /S runs the installer or uninstaller silently. * /D sets the default installation directory ($INSTDIR), overriding InstallDir and InstallDirRegKey. It must be the last parameter used in the command line and must not contain any quotes, even if the path contains spaces. Only absolute paths are supported.
If command line options don't work, they are most likely disabled by the author of the installer.