MasterDomainController

Gets or sets the name of the domain controller to use as the primary domain controller for the zone.

Syntax

string MasterDomainController {get; set;}

Property value

The name of the primary domain controller for the zone.

Example

The following code sample illustrates using MasterDomainController in a script:

...  
'Specify the zone you want to work with  
set zone = GetZone("fireball.net/Field/Zones/macs”)  
‘Display the domain controller for this zone  
wScript.Echo “Main Domain Controller: “ & zone.MasterDomainController  
...