Silent Installation

The Developer Installation Package is in the .msi format and supports Silent Installation through the use of the msiexec.exe utility. When the command line argument “/qn” is passed to the utility, the installation of the Developer Installation Package proceeds without Graphical User Interface (GUI) that is, there are no dialog boxes or user prompts requesting for information, such as the installation directory. The progress of the installation, indicating success or failure, is written to a log file. The log file includes the status, warnings, and error messages.

Performing Silent Installation of Developer

To install the Developer Installation Package in silent mode, execute the following command from the command prompt:

“:> msiexec.exe /i “<path of the AB Suite 7.0 Developer.msi>\AB Suite7.0 Developer.msi” /qn <parameters>"

The commands or parameters to execute the AB Suite package are as follows:

Commands or Parameters

Values

msiexec /i

Example: <default>\AB Suite 7.0 Developer\Product Configuration 1\Release 1\DiskImages\Disk1\AB Suite 7.0 Developer.msi

/qn INSTALLDIR =

Example: C:\Program Files\Unisys\AB Suite 7.0\

AgreeToLicense

Yes

ADDLOCAL

ALL

APP_USER_DOMAIN=

.

APP_USER_NAME=

Example: AppUser

APP_USER_PASSWORD=

Example: App1User

APP_ADMIN_DOMAIN=

.

APP_ADMIN_NAME=

Example: AppAdminUser

APP_ADMIN_PASSWORD=

Example: App1AdminUser

PASSDATA=

Example: C:\AB Suite 7.0\Data\

/l*v

Example: C:\Temp\AB Suite 7.0.Log

Where,

msiexec is the executable program of the Windows Installer to interpret installation package and install products on the target location.

/i switch is used to install the package from the command line.

/qn switch is used to suppress the dialog boxes displayed for input and output to the user.

INSTALLDIR is a property for specifying the location where the Windows Installation Package is installed.

/l*v switch is used to create a log file.

Following is an example to install Developer through Silent Installation from the command prompt:

msiexec.exe/i 
/qn/ norestart INSTALLDIR="C:\Program Files\Unisys\AB Suite 7.0\" AgreeToLicense=Yes ADDLOCAL=
ALL APP_USER_DOMAIN=APP_USER_NAME=AppUser APP_USER_PASSWORD=App1User 
APP_ADMIN_DOMAIN=APP_ADMIN_NAME=AppAdminUser APP_ADMIN_PASSWORD=App1AdminUser
PASSDATA="C:\AB Suite 7.0\Data\"
/l*v "C:\TEMP\AB Suite 7.0 Developer.log"