Microsoft Operations Manager

InfrastructureMaster Property

The InfrastructureMasterproperty gets the DNS formatted name of the infrastructure master.

[VBScript]
ActiveDirectory.InfrastructureMaster

Parameters

None

Access

Read-only

Return Value

String

Examples

The following example shows how to get the DNS-formatted name of the infrastructure master.

[VBScript] 
Function GetInfraMasterName()
	Dim objActiveDirectory
	Dim strName

	strName = ""

	Set objActiveDirectory =
CreateObject("McActiveDir.ActiveDirectory")

	strName = objActiveDirectory.InfrastructureMaster

	Set objActiveDirectory = Nothing

	GetInfraMasterName = strName
End Function

Requirements

Windows NT/2000: Requires Windows 2000 or later
Version: Requires MOM 1.0 SP1

See Also

ActiveDirectory Object


Did you find this information useful? Please send your suggestions and comments about the documentation to momsdk@microsoft.com.