StartPageIn Property

StartPageIn Property

Gets and sets the Start page used for inbound SALT interpreters.

obj.StartPageIn = string

Part

Description

obj

An instance of the TAS class.

string

A string that specifies the Start page.

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

Standard Edition: "https://localhost/MSS/StartPage.htm"

Enterprise Edition: Empty

Default value for this property.

Remarks

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

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 TAS instance.
Set tel = namespace.Get("TAS=@")

' Display the current value.
WScript.Echo tel.StartPageIn

' Set the property value.
tel.StartPageIn = "https://webserver/SpeechApplication/startpage.aspx"

' Update the class instance in WMI.
tel.Put_

Member Of

TAS class