FullName

Gets the full name of the zone.

Syntax

string FullName {get;}

Property value

The full, canonical name for the zone.

Discussion

The full name is the canonical name of the zone. The full name is updated when the directory object is updated. Therefore, changes to the Name property are not reflected in the value retrieved by the FullName property until the changes to the Name property are committed to Active Directory.

Example

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

...  
'Specify the zone you want to work with  
set objZone = cims.GetZone("ajax.org/UNIX/Zones/test_lab")  
'Display the full name zone   
If objZone.IsReadable = true  
wScript.Echo “Zone name: ” & objZone.FullName  
end if  
...