If you are installing Speech Server on a Windows platform, you can manually install it as a Windows service from the command line.
To install IDOL Speech Server as a Windows service
Send the following command:
SpeechServer
.exe
-install
The -install
command has the following optional arguments:
-start {[auto] | [manual] | [disable]}
|
The startup mode for the component. Auto means that Windows services automatically starts the component. Manual means that you must start the service manually. Disable means that you cannot start the service. The default option is Auto . |
-username Username
|
The user name that the service runs under. By default, it uses a local system account. |
-password Password
|
The password for the service user. |
-servicename ServiceName
|
The name to use for the service. If your service name contains spaces, use quotation marks (") around the name. By default, it uses the executable name. |
-displayname DisplayName
|
The name to display for the service in the Windows services manager. If your display name contains spaces, use quotation marks (") around the name. By default, it uses the service name. |
-depend Dependency1[,Dependency2 ...]
|
A comma-separated list of the names of Windows services that Windows must start before the new service. For example, you might want to add the License Server as a dependency. |
For example:
SpeechServer.exe -install -servicename SpeechServerComponent -displayname "IDOL Speech Server" -depend LicenseServer
After you have installed IDOL Speech Server as a service, you can start and stop the service from the Windows Services manager.
When you no longer require IDOL Speech Server, you can uninstall it again.
To uninstall IDOL Speech Server as a Windows Service
Send the following command:
SpeechServer.exe -uninstall
If you did not use the default service name when you installed the component, you must also add the -servicename
argument. For example:
SpeechServer.exe -uninstall -servicename ServiceName
|