NOTE: All commands in this topic must be run from a Command Prompt window with Administrative rights.
The following code example demonstrates a silent installation of Insight where the installation directory, database name, database server, and path name of a log file are provided as parameters.
setup.exe /s /v"/qn IS_SQLSERVER_DATABASE=inSight_test IS_SQLSERVER_SERVER=os-sql19 /log \"%temp%\inSight_install.log\""
It is important to note that /v must be followed directly by a double quote and that other double quotes within the option string must be preceded by the escape symbol \.
The option string will be passed to the msi package that is included within setup.exe.
After set up is complete, you can use the log file for problem analysis.
You can provide the following additional parameters:
| Parameter | Beschreibung |
|---|---|
| INSTALLDIR | The installation directory. |
| COMPANYNAME | The user's company name. |
| USERNAME | The name of the user. |
| IS_SQLSERVER_SERVER | SQL Server instance. |
| IS_SQLSERVER_DATABASE | The name of the Insight database. |
| USETRUSTEDCONNECTION | [1] = Windows Authentication; [0] = SQL Server Authentication. |
| IS_SQLSERVER_USERNAME | User name for SQL Server Authentication. |
| IS_SQLSERVER_PASSWORD | Password for SQL Server Authentication. |
| LICENSESERVER | URL of the Insight License Manager. |
| ALLUSERS | [1] = Installation for all users; [0] = Installation for current user. If this parameter is not provided, Insight will be installed for the current user only. For an automated installation by some software distribution tools, it is often necessary to apply ALLUSERS = [1]. |
| ADDLOCAL | Comma-separated list of the components to be installed. These are the same components that are included in the Custom installation type when installing Insight interactively. Note: Do not use blank spaces after a comma. |
The following components are available:
- inSight_Foundation (this component is mandatory)
- inSight (Insight Client)
- inSight_StartMenu_SC (Start menu shortcut)
- inSight_Desktop_SC (Desktop shortcut)
- inResponse (Inresponse)
- inResponse_StartMenu_SC
- inResponse_Desktop_SC
- inResponse_Service (Inresponse Service)
- inResponse_Service_Desktop_SC
- inResponse_Service_StartMenu_SC
- inSight_INQ (Insight Inquiry Client)
- inSight_INQ_Desktop_SC
- inSight_INQ_StartMenu_SC
- inSight_OE (Insight Order Entry Client)
- inSight_OE_Desktop_SC
- inSight_OE_StartMenu_SC
- inSight_SFA (Insight Shop Floor Client)
- inSight_SFA_Desktop_SC
- inSight_SFA_StartMenu_SC
To install Insight SFA Client without a desktop shortcut
setup.exe /s /v"/qn IS_SQLSERVER_DATABASE=inSight_test IS_SQLSERVER_SERVER=os-sql19 ADDLOCAL=inSight_Foundation,inSight_SFA,inSight_SFA_StartMenu_SC /log \"%temp%\inSight_install.log\""
To install Insight and Inresponse without shortcuts for all users
setup.exe /s /v"/qn IS_SQLSERVER_DATABASE=inSight_test IS_SQLSERVER_SERVER=os-sql19 ADDLOCAL=inSight_Foundation,inSight,inResponse ALLUSERS=1 /log \"%temp%\inSight_install.log\""
NEXT TOPIC: Install with msiexec