Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Macro name changed from html to html-bobswift during server to cloud migration processing.

...

The following illustrates the command line syntax used to install UEC:

Panel
Html bobswift
<pre>
sb-UECtlr-6.3.0.&lt;level&gt;-windows-i386.exe [/v"

command line parameters

Html bobswift
"] [/s] [/w] [/x]
</pre>

In this syntax:

  • <level> is the numeric package level.

...

Parameter

Description

Default

Anchor
/fom
/fom
/fom

Repairs a Universal Enterprise Controller installation.
 
om (after the /f) are options used by the repair. There are other options available, but for behavior that matches the repair done from the graphical install, the om options must be used.
 
/fom cannot be used with the /x (remove) parameter.

n/a

Anchor
/x
/x
/x

Removes Universal Enterprise Controller.
 
/x cannot be used with the /fom (repair) parameter.

n/a

INSTALLDIR=installdir

Sets the root installation directory to <installdir>. Each component will be installed under this directory.
 
INSTALLDIR is required if you want to install UEC under a directory different from the one specified by the PROGRAMFILES environment variable (typically C:\Program Files\Universal). If the directory contains spaces, you must use double ( " ) quotation marks around the path name.

(none)

UECTLR={yes|no}

Specification for whether or not to install the UEC Service component during new installs, upgrades, or maintenance.

Html bobswift
<ul>
<li> If <b>yes</b> is specified, UEC Service will be installed.
<li> If <b>no</b> is specified, UEC Service will not be installed. If UEC Service already is present on the system (via a previous installation), it will be removed.
</ul>

Since, by default, each component's install state is preserved during an upgrade or maintenance, UEC Service is not required unless you want to change the current install state. UEC Service is ignored during an uninstall.
 
Setting this parameter has the same effect as selecting whether or not to install UEC Service on the Custom Setup dialog when installing UEC via the graphical interface.

yes

Anchor
/q
/q
/q

Suppresses the product installation dialogs.
 
Use this parameter in addition to the #/s command line switch for a completely silent install.
 
See #Command Line Switches, #Command Line Installation Examples, and #Detecting the Completion of Silent Installs for additional information regarding silent installs.

n/a

Anchor
/L
/L
/L*v

Instructs the installation process to create an installation log file named <logfilepath> (full path name). If <logfilepath> contains spaces, you must enclose it with double ( " ) quotation marks.
 
*v are flags used to specify the level of detail (verbose) contained in the log file. To reduce the amount of output generated, *v can be omitted. However, using these options is good practice; they can assist Stonebranch Customer Support with problem determination should any errors occur during installation.

n/a

...

To install all UEC components via the graphical user interface, issue the following command:

Panel
Html bobswift
<pre>
sb-UECtlr-6.3.0.0-windows-i386.exe
</pre>


Graphical User Interface Install, All Components, with Log File

To install all UEC 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:

Panel
Html bobswift
<pre>
sb-UECtlr-6.3.0.0-windows-i386.exe /v"/l*v c:\temp\install.log"
</pre>


Silent Install, Different Installation Directory

To install UEC under D:\Universal, which is a directory other than the one specified by the environment variable PROGRAMFILES, issue the following command:

Panel
Html bobswift
<pre>
sb-UECtlr-6.3.0.0-windows-i386.exe /s /v"/qn INSTALLDIR=D:\Universal"
</pre>


Silent Install, All Components

To install all UEC components without using a graphical interface — that is, a silent install — issue the following command:

Panel
Html bobswift
<pre>
sb-UECtlr-6.3.0.0-windows-i386.exe /s /v"/qn"
</pre>


Anchor
Detecting the Completion of Silent Installs
Detecting the Completion of Silent Installs
Detecting the Completion of Silent Installs

...

For example, from the command prompt, issue the following command to start the Universal Enterprise Controller installation and wait for it to finish.

Panel
Html bobswift
<pre>
start /b /wait sb-UECtlr-6.3.0.0-windows-i386.exe /w /s /v"/qn"
</pre>
  • The /b switch prevents the start command from opening a new window.
  • The /wait parameter causes the start command to start the application, sb-UECtlr-6.3.0.0-windows-i386.exe, and then wait for it to finish.

...