Installing UEC Client Applications via the Command Line
Introduction
This page describes how to install UEC Client Applications using the Windows Installer command line interface.
A command line installation is useful in situations where:
- Several UEC Client Applications installations must be deployed across many different systems.
- It is not practical or convenient to perform the graphical interface installation.
- It is necessary to generate an installation log file.
Installing UEC Client Applications
Step 1 | Download the UEC Client Applications for Windows product distribution file, |
---|---|
Step 2 | Execute the distribution file from the command line, and include all appropriate command line switches and parameters. |
Command Line Syntax
The following illustrates the command line syntax used to install UEC Client Applications:
sb-UEClient-6.3.0.<level>-windows-i386.exe [/v"command line parameters"] [/s] [/w] [/x]
In this syntax:
<level>
is the numeric package level.
The command line switches (/v, /s, /w, and /x) are processed directly by the distribution file to control behavior of the Windows Setup application.
The command line parameters are passed to the Windows Installer (msiexec) to control the extracted Windows installer package file (.msi) behavior during the install process.
Command Line Switches
The following table identifies the command line switches available for a command line installation:
/v | Passes parameters to the Windows Installer (msiexec). |
---|---|
/s | Suppresses the initialization and extraction dialogs displayed before the product install Welcome dialog." |
/w | Instructs the Windows Setup application to wait until the installation completes. |
/x | Uninstalls UEC Client Applications. |
Command Line Parameters
The following table describes the parameters that are available for a command line installation.
The parameters can be specified in any order, with the following exceptions:
- If the Repair (/fom) or Remove (/x) parameter is used, it must be specified before all other parameters.
- If the Silent install (/q) and/or Log file (/L) parameters are used, they can be specified in any order, but they must be specified after all other parameters.
These parameters are preceded by the /v command line switch and must be enclosed in double (") quotation marks.
Parameter | Description | Default |
---|---|---|
/fom | Repairs a UEC Client Applications installation. | n/a |
/x | Removes the UEC Client Applications. | n/a |
INSTALLTO=installdir | Sets the root installation directory to < | per-machine installation: |
PERUSER={0|1} | Performs an installation for all users or a specific user account:
PERUSER is required only under the following situations:
| 0, if UEC Client Applications is installed using an Administrative account. |
UECADMIN={yes|no} | Specification for whether or not to install the I-Administrator component during new installs, upgrades, or maintenance.
Since, by default, each component's install state is preserved during an upgrade or maintenance, UECADMIN is not required unless you want to change the current install state. UECADMIN is ignored during an uninstall. | yes |
UAMONITOR={yes|no} | Specification for whether or not to install the I-Activity Monitor component during new installs, upgrades, or maintenance.
Since, by default, each component's install state is preserved during an upgrade or maintenance, UAMONITOR is not required unless you want to change the current install state. UAMONITOR is ignored during an uninstall. | yes |
UMGMTCON={yes|no} | Specification for whether or not to install the I-Management Console component during new installs, upgrades, or maintenance.
Since, by default, each component's install state is preserved during an upgrade or maintenance, UMGMTCON is not required unless you want to change the current install state. UMGMTCON is ignored during an uninstall. | yes |
/q | Suppresses the product installation dialogs. | n/a |
/L*v | Instructs the installation process to create an installation log file named < | n/a |
Command Line Installation Examples
The following examples illustrate different ways that UEC Client Applications can be installed from the command line.
Graphical User Interface Install of All Components
To install all UEC Client Applications components via the graphical user interface, issue the following command:
sb-UEClient-6.3.0.x-windows-i386.exe
Graphical User Interface Install, All Components, with Log File
To install all UEC Client Applications components using the Windows Installer graphical user interface and write a log file to C:\temp\install.log
during the installation, issue the following command:
sb-UEClient-6.3.0.x-windows-i386.exe /v"/l*v c:\temp\install.log"
Silent Install of All Components
To silently install all UEC Client Applications components, issue the following command:
sb-UEClient-6.3.0.x-windows-i386.exe /s /v"/qn"
Silent Install of All Components, Per-User Installation, Different Installation Directory
To silently install all UEC Client Applications components as a per-user installation (that is, one in which registry entries, Start menu shortcuts, and so on are visible only to the user performing the installation), and to override the default installation directory, issue the following command:
sb-UEClient-6.3.0.x-windows-i386.exe /s /v"/qn PERUSER=1 INSTALLTO=C:\UEClientApps\Universal"
Silent Install of All Components, with Log File
To silently install all UEC Client Applications components and write a log file to C:\Temp\install.log during the installation, issue the following command:
sb-UEClient-6.3.0.x-windows-i386.exe /s /v"/qn /l*v c:\temp\install.log"
Detecting the Completion of Silent Installs
If the /q switch is used to perform a silent install, no graphical interface or user interaction is required. One drawback to this is that no feedback is provided indicating when the Windows Installer process (install, uninstall, or repair) finishes.
One method that can be used to detect when the Installer process (msiexec.exe) ends is to execute it using the system's start command. Using available command line switches, the start command can be used to kick off the Installer process, and then wait for it to finish. When the start command returns control to its calling process (for example, the command prompt), the Installer process will have ended.
For example, from the command prompt, the following command can be issued to start the UEC Client Applications installation, and wait for it to finish.
start /b /wait sb-UEClient-6.3.0.x-windows-i386.exe /w /s /v"/qn"
- The /b switch prevents the start command from opening a new window.
- The /wait parameter causes the start command to start the application, sb-UEClient-6.3.0.x-windows-i386.exe, and then wait for it to finish.
The syntax above also can be used to execute the start command from within a script, such as a .bat file.
For more information on the start command, go to the Windows command prompt and enter: start /?.