IsSFU

Determines whether the zone uses the Microsoft Services for UNIX (SFU) schema extension.

Syntax

bool IsSFU {get;}

Property value

Returns true if the zone uses a Services for UNIX (SFU) schema, or false if the zone does not use the SFU schema.

Discussion

If the Microsoft Services for UNIX (SFU) schema extension is installed and being used to store UNIX attributes for the zone, this property returns a value of true.

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")  
'Check whether the zone uses the SFU schema  
If zone.IsSFU then  
wScript.Echo “Zone uses the SFU schema for UNIX attributes”  
end if  
...