PreloadedResourceManifest Property

PreloadedResourceManifest Property

Gets or sets the URI of the application manifest.

obj.PreloadedResourceManifest = string

Part

Description

obj

An instance of the SES class.

string

A string that specifies the path pointing to the application manifest. This must be a URI that specifies either the https:// or https:// protocols.

Qualifiers

Qualifier

Value

Description

Registry

True

If True, this property value is read from the Registry.

Restart

False

If False, changes to this property take effect without requiring the service to restart.

DefaultValue

""

Default value for this property.

Remarks

This property is exposed in the Microsoft Speech Server (MSS) snap-in for Microsoft Management Console (MMC).

The application manifest is an XML page listing grammars and prompt databases used by the application. At application startup Speech Engine Services retrieves the application manifest and loads the listed resources.

Windows Management Instrumentation (WMI) Script Example

myComputer = "localhost"

' Use a Locator object to connect to WMI.
Set locator = CreateObject("WbemScripting.SWbemLocator")
Set namespace = locator.ConnectServer(myComputer, "root/MSS")

' Get the SES instance.
Set ss = namespace.Get("SES=@")

' Display the current property value.
WScript.Echo ss.PreloadedResourceManifest

' Set the property value.
ss.PreloadedResourceManifest = "https://MyAppServer/SESManifest.xml"

' Update the class instance in WMI.
ss.Put_

Member Of

SES class