Command Line installation

System Administrators can uninstall and/or install V-Suite CORE products via a batch or PowerShell script.  Please consider the following scenarios:



You previously installed an earlier version of the software (for example V-Suite CORE 2018) and you wish to remove this version and install a newer version of the software (for example V-Suite CORE 2019).


Your script should:

    • Uninstall V-Suite CORE 2018 using the application Product Codes
      • The 32-bit version if any
      • The 64-it version if any
      • The Integration Adapters if any

    • Install V-Suite CORE 2019 with the V-Suite CORE 2019 Windows Installers (.msi)
      • The 64-bit version
      • Optionally the 32-bit version if users need to be able to import/export CAD
      • The Integration Adapters if applicable




You installed an earlier build of the software (for example V-Suite CORE 2019 Update 1 - Build 8.0.0.261) and you wish to upgrade to a newer Maintenance Release/Service Pack (for example V-Suite CORE 2019 Update 3 - Build 8.0.0.333)

Your script should:

    • Uninstall V-Suite CORE 2019 Update 1 using the application Product Codes
      • The 32-bit version if any
      • The 64-it version if any
      • The Integration Adapters if any
    • Install V-Suite CORE 2019 with the V-Suite CORE 2019 Update 3 Windows Installers (.msi)
      • The 64-bit version
      • Optionally the 32-bit version if users need to be able to import/export CAD
      • The Integration Adapters if applicable

Batch Script Examples

This example batch script will uninstall V-Suite CORE 2018 and install V-Suite CORE 2019. The V-Suite CORE 2019 windows installers are located in folder '\\deployment_server\install". The script will install the 64-bit client only and PI and SAP Integration Adapters:


@echo off
::

:: Uninstall V-Suite CORE 2018 (32 and 64 bit and integration adapters)

::

msiexec.exe /x {FE23D898-58AC-43A1-8BB4-D399D20904ED} /qn

msiexec.exe /x {A932B36D-64F8-42CB-B05D-48AC7F551B33} /qn

msiexec.exe /x {361020B3-9A56-42B8-92B7-2F30EA420D3D} /qn

::

:: Install the V-Suite CORE 2019 (64-bit Client and PI and SAP integration adapters)

::

msiexec /i "\\deployment_server\install\INOVX V-Suite CORE 2019 (64-bit).msi" /qn

msiexec /i "\\deployment_server\install\V-Suite CORE 2019 Integration Adapter Setup.msi" /qn ADDLOCAL=PIAdapter,SAPAdapter


This example batch script will install a V-Suite CORE 2019 Maintenance Release on computers which may already have an earlier build of the software installed. The V-Suite CORE 2019 Maintenance Release windows installers are located in folder '\\deployment_server\install". The script will install the 64-bit client only and PI and SAP Integration Adapters:


@echo off

::

:: Uninstall previous build of V-Suite CORE 2019 (32 and 64 bit and integration adapters)

::

msiexec.exe /x {43560853-C0E8-4908-A568-0A91AC5C3410} /qn

msiexec.exe /x {5CD7B653-9908-49AF-B41D-DCAFA7947479} /qn

msiexec.exe /x {B1D66C00-BF33-424E-83F2-6F0B9DA13C29} /qn

::

:: Install the V-Suite CORE 2019 Maintenance Release (64-bit Client and PI and SAP integration adapters)

::

msiexec /i "\\deployment_server\install\INOVX V-Suite CORE 2019 (64-bit).msi" /qn

msiexec /i "\\deployment_server\install\V-Suite CORE 2019 Integration Adapter Setup.msi" /qn ADDLOCAL=PIAdapter,SAPAdapter

Optional Installer Inputs

The windows installer accepts optional inputs to update the user configuration for V-Suite CORE.


For example:


  • Set the IES Server TO "MY-IES-SERVER":


msiexec /i "\\deployment_server\install\INOVX V-Suite CORE 2019 (64-bit).msi" /qn IESSERVER="MY-IES-SERVER"


  • Activate the 'V-Suite CORE LT' base license (RL-502) and 'Add-on for Server Projects' (RL-513) and 'CAD Converter Add on' (RL-513) add-on licenses:


msiexec /i "\\deployment_server\install\INOVX V-Suite CORE 2019 (64-bit).msi" /qn BASEFEATURE="<Licence Code=""RL-502""/>" ADDON="<Licence Code=""RL-511""/><Licence Code=""RL-513""/>"


Refer to the MSI Inputs topic for a complete list of optional inputs.