Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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

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


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:

html-bobswift
Panel
<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:

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

Silent Install, All Components

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

html-bobswift
Panel
<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.

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


  • 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.

...