Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Approved

...

When performing installations via the command line, it is possible to work directly with the InstallShield setup file provided by CSI or to extract and work with the MSI installer package.

InstallShield Setup Files

The installation files downloaded from CSI are InstallShield setup files which, when run interactively, provide a guided installation experience. When run from the command line, the same guided experience is available unless the silent-installation option is used. The InstallShield setup takes care of all necessary steps to install the software on the client machine, including any required prerequisites, such as installing Microsoft C++ redistributable packages.

MSI Setup Files

A MSI file can be extracted from an InstallShield setup file and then used to install the software, usually via command line. It is important to note that when using a MSI file to install the software, any prerequisites contained in the InstallShield setup file (not part of the MSI) need to be manually installed on the client machine if not already present.

...

   setup.exe /s /x /b"C:\FolderInWhichMSIWillBeExtracted" /v"/qn"

where, 

   setup.exe should be changed to the name of the downloaded InstallShield setup file;

...