Setup.exe Installation

This section describes the steps for performing a silent installation/uninstallation of Xalt | Integration - Setup EXE.


Silent Installation:

For doing a silent installation of the Setup.exe, follow this procedure:

  1. Open DOS command shell as administrator.
  2. Execute the command:

    Setup.exe /s /v"/l*v c:\test.log /qn INSTALLDIR="[CUSTOM_INSTALLATION_PATH]" CUSTOM_INSTALLDIR=[Yes/No] INSTALL_SHORTCUT=[Yes/No] START_SERVICE=[Yes/No]"

    Example

    XaltIntegration.9.0.203.0.RC.x64.exe /s /v"/l*v c:\test.log /qn INSTALL_SHORTCUT=No START_SERVICE=Yes"

Parameter Description:

Parameter

Description

Default Value

msiexec

Windows standard application to install MSI packages.

N/A

/s

Standard option to do silent install.

N/A

/v

Standard option to pass parameters to the MSI.

N/A

/l*v c:\test.log

Writes installation log to file 'C:\test.log'.

N/A

/qn

Silent installation without any UI.

N/A

INSTALLDIR="[CUSTOM_INSTALLATION_PATH]"

Standard option to specify the installation directory.

'C:\Program Files'

CUSTOM_INSTALLDIR=[Yes/No]

Xalt Integration option to indicate that a custom installation path is given. If this parameter is ignored or set to 'No', the 'INSTALLDIR' parameter will be ignored. In other words, if 'INSTALLDIR' parameter is set, then this parameter should have a value 'Yes'.

No

INSTALL_SHORTCUT=[Yes/No]

Xalt Integration option to control whether shortcuts have to installed.

Yes

START_SERVICE=[Yes/No]

Xalt Integration option to control whether the start property of Engine service should be set to 'Automatic' and if the service should be started immediately after installation. Setting a value of 'Yes' will set the start property to 'Automatic' and the service will be started after the installation is completed.

No

Information on additional parameteres can be found here



Silent Uninstallation:

For doing a silent uninstallation of the MSI, follow this procedure:

  1. Open DOS command shell as administrator.
  2. Execute the command:

    msiexec /x [PRODUCT_CODE] /qn OPTION_REMOVE_ALL=Yes

    Example

    msiexec /x {9206FE54-D343-4F98-B5A5-6BC95EEA50FE} /qn OPTION_REMOVE_ALL=Yes

Parameter Description:

Parameter

Description

Default Value

msiexec

Windows standard application to install MSI packages.

N/A

/x "[FULL_PATH_TO_MSI_PACKAGE]"

Standard option to uninstall a product followed by the product code. Product code for x64 - '{9206FE54-D343-4F98-B5A5-6BC95EEA50FE}'.

N/A

/qn

Silent uninstallation without any UI.

N/A

OPTION_REMOVE_ALL=[Yes/No]

Xalt Integration option to indicate whether the program data should be cleaned. Providing 'Yes' will do a clean uninstallation.

No