StartPageInRefreshTime Property

StartPageInRefreshTime Property

Gets and sets the amount of time (in minutes) to wait before refreshing the Start page used for inbound SALT interpreters. A value of zero specifies no periodic refreshing.

obj.StartPageInRefreshTime = 5

Part

Description

obj

An instance of the TAS class.

integer

An unsigned integer that specifies the amount of time to wait before refreshing 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

0

Default value for this property.

Remarks

Every 60 seconds, TAS scans the pool of idle inbound SALT interpreters, and refreshes the Start page for every interpreter where the value for StartPageInRefreshTime has been exceeded.

An internal setting limits the number of interpreters being refreshed simultaneously. This ensures that there will always be an interpreter available to take an incoming call. Because of this limit, it may take up to four minutes after the configured time to complete the Start page refresh for a given interpreter.

Changing the value of StartPageIn also refreshes the page, as does an Application Domain or Process recycle.

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.StartPageInRefreshTime

' Set the property value.
tel.StartPageInRefreshTime = 5

' Update the class instance in WMI.
tel.Put_

Member Of

TAS class