Configuring a silent installation
On Windows, use the /qn option to install Voice Platform silently from the command line. For example, use the silent option to install via a script. You do not need to stop or restart services (because the installer does this automatically during the installation).
Before you begin:
- You have reviewed the installation prerequisites. See Before installing Voice Platform.
- You have downloaded and extracted the installer. See Downloading the installer.
- Nuance recommends specifying all known options in your commands. Options are often used in combinations where one option requires another. Specifying all known options helps avoid errors caused by missing parameters. See the examples for ideas about how options are used together in different contexts.
- The command lines can have spaces between options, but not between options and their values.
Note: If the syntax contains errors, such as incorrect format or invalid values, the installation might switch from silent to standard or not complete successfully.
To install Voice Platform silently on Windows:
- Log in to the host as a user with administrator permissions.
- Open a command prompt window using the "Run as administrator" option.
- Change to the Nuance_Voice_Platform_for_Speech_Suite_version. directory containing the extracted installer.
- Run these commands to install Voice Platform silently, depending on your deployment:
This example command installs Voice Platform and sets the location for Tomcat (TOMCAT_HOME=). Use this command when Voice Platform and Management Station are on the same host. Since Management Station is on this host, the installation uses the default host:port pair of localhost:8080, and the Java location is already set.
> msiexec /i “Nuance_Voice_Platform_for_Speech_Suite_11.msi” /qn TOMCAT_HOME=C:\tmp\apache-tomcat-version
This example command installs Voice Platform, sets the locations for Java (JAVA_HOME=) and Tomcat (TOMCAT_HOME=), and connects to a Management Station host (MSADDRESS=). Use this command when Voice Platform and Management Station are on different hosts.
> msiexec /i “Nuance_Voice_Platform_for_Speech_Suite_11.msi” /qn JAVA_HOME="C:\Program Files\Java\version" TOMCAT_HOME=C:\tmp\apache-tomcat-version MSADDRESS=address:8080
- Open Control Panel and look for the Voice Platform icon in the list of installed programs to verify that the installation has completed.
- Start the Voice Platform services to confirm the installation completed successfully. See Testing the installation.
Note: The use (or lack) of spaces in the examples is deliberate.
Running silent installation in scripts
You typically run silent installations from a script file, which requires using the start command with the /WAIT option. When executed in this form, the installation completes before returning execution to the script. For example:
> start /wait msiexec /i “Nuance_Voice_Platform_for_Speech_Suite_11.msi” /qn JAVA_HOME="C:\Program Files\Java\version" TOMCAT_HOME=C:\tmp\apache-tomcat-version MSADDRESS=address:8080
Silent options for Windows
The following table describes options for a silent installation on Windows. Values with spaces must be enclosed in double quotes (" "). For information on additional Windows Installer options, run msiexec without any options.