SFUDomain

Gets or sets the Active Directory domain associated with this zone when the zone is determined to be a zone that uses the Microsoft Services for UNIX (SFU) schema extension.

Syntax

string SFUDomain {get; set;}

Property value

The Active Directory domain for the zone.

Example

The following code sample illustrates using this method in a script:

...  
'Specify the zone you want to work with  
set zone = GetZoneByPath("LDAP://cn=test_lab,cn=Zones,cn=UNIX,dc=ajax,dc=org")  
'If the zone uses the SFU schema, display its domain  
If zone.IsSFU = true  
wScript.Echo zone.SFUDomain  
end if  
...