Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

 

Installations run in silent mode are performed without an end-user interface. InstallShield allows users to create silent installations for Basic MSI, InstallScript MSI, and InstallScript project types.

On this page

Basic MSI silent installation

To run a Basic MSI installation silently, type, at the command line, the following:

  • msiexec /i Product.msi /qn

If release settings include Setup.exe, the command run should be the following:

  • Setup.exe /s /v" /qn"

Basic MSI installations do not create or read response files. To set installation properties for a Basic MSI project, run a command line such as:

  • msiexec /i Product.msi /qn INSTALLDIR=D:\ProductFolder USERNAME="Valued Customer"

InstallScript MSI and InstallScript silent installations

For InstallScript MSI and InstallScript projects, a response file should be created to record the end-user interaction. This response file is passed to Setup.exe such that installation can be run. The traditional silent installation works almost exactly the same as a regular installation in that it follows the same script logic.

To run an InstallScript MSI installation without using Setup.exe, the MSI silent mode may be used.

Examples

Silent installation of CSiBridge 2014 V16

Step 1: Use the Installation Wizard to download the CSiBridge 2014 V16 installation/setup file.

Step 2: Open Admin Command Prompt and run the setup file with the silent installation switches as follows

Code Block
languagenone
CSiBridge20141600Setup.exe /s /v" /qn SHOWACTIVATE=0"

Please note that the SHOWACTIVATE=0 flag is needed to prevent the license activation dialog box from showing up.

Silent uninstallation for SAP2000 and CSiBridge version 18.2.0 and higher

For SAP2000 and CSiBridge version 18.2.0 and higher, silent uninstallation can be performed using the following command:

Code Block
languagenone
SAP2000v1820Setup32.exe /x /s /v"/qn SHOWACTIVATE=0"
Hidden content

Related Incidents:

  • Incident
    no57687
    commentComments about SHOWACTIVATE=0 flag
  • Incident
    no58458
    commentWarning messages to open ports during client (?!) installation.

Related emails:

  • Email
    date6/27/2016
    subjectInstructions on how to perform silent uninstallaton
    frommw
    commentSilent uninstallation will be available starting with CSiBridge and SAP2000 V18.2.0
    took
    id17302075
  • Email
    date4/6/2017
    subjectSilent installation of CSiBridge 2017 that suppresses the DirectX dialog box
    frommw
    comment
    took
    id19562731

 

External links