AppServerURL Property

AppServerURL Property

Gets and sets the URL for the Speech Application Deployment Service (SADS) virtual directory.

obj.AppServerURL = string

Part

Description

obj

An instance of the Service class.

string

A string that specifies the SADS virtual directory.

Windows Management Instrumentation (WMI) Script Example

The following code sample lists the properties of all services in the default deployment.

strDeploymentName = "Default"

' Connect to MSS namespace on the specified computer.
Set objLocator = CreateObject("WbemScripting.SWbemLocator")
Set objNamespace = objLocator.ConnectServer("localhost", "root/MSS")

' Get the WMI deployment object.
Set objDeployment = objNamespace.Get("Deployment.Name='" & strDeploymentName & "'")

' Display the service names.
WScript.Echo "Services:" & vbCrLf

If IsArray(objDeployment.Services) Then
    For Each service In objDeployment.Services
        Set objCurrService = GetObject("winmgmts:" & service)
        WScript.Echo objCurrService.Name
        WScript.Echo objCurrService.DeploymentName
        WScript.Echo objCurrService.Type
        WScript.Echo objCurrService.AppServerUrl
    Next
End If

Member Of

Service class