On Windows platforms, you can perform a silent installation of the extend Interoperability Suite using the msiexec command, which requires that you use the .msi install package that is shipped with your product. This must be run from a command line prompt that has administrative privileges.
The syntax required is:
msiexec /i <msi-file> INSTALLDIR=<install-directory> [INSTALLDIR64=<64-bit-install-directory>] ADDLOCAL=<product1,product2,...> [WINDOWSVERSION=<Win-version>] /qn [/L*v <log-file>]
where:
32-bit installation:
For example, the following command silently installs the ACUCOBOL-GT runtime, Acu4GL for MSSQL, and the AcuSQL runtime to the C:\AcuInstallDir directory, and (on Windows 8 and later) also creates the extend start menu in the Windows program list:
msiexec /i "extend(R) Version 10.2.0 x86.msi" INSTALLDIR=C:\AcuInstallDir ADDLOCAL=Runtime,Acu4GLMSSQL,AcuSQLRuntime WINDOWSVERSION=PostWindows7 /qn
64-bit installation:
For example, the following command silently installs the ACUCOBOL-GT runtime, Acu4GL for MSSQL, and the AcuSQL runtime to the C:\AcuInstallDir directory, and the 64-bit runtime, Acu4GL for MSSQL, and AcuSQL runtime to the C:\AcuInstallDir64 directory:
msiexec /i "extend(R) Version 10.2.0 x64.msi" INSTALLDIR=C:\AcuInstallDir INSTALLDIR64=C:\AcuInstallDir64 ADDLOCAL=Runtime,Runtime64,Acu4GLMSSQL,Acu4GLMSSQL64,AcuSQLRuntime,AcuSQLRuntime64 /qn
You can also use the msiexec command to run the installation with a user interface: omit the ADDLOCAL parameter and substitute /qn for /qf.
You can also use the msiexec command to install the thin client .msi file that is supplied with your product: omit the ADDLOCAL parameter.