GetGroupUnixProfiles

Returns the list of UNIX group profiles that have been defined for the zone.

Syntax

IGroupUnixProfiles GetGroupUnixProfiles()

Return value

The GroupUnixProfiles object for the zone.

Example

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

...  
'Specify the zone you want to work with  
set objZone =
cims.GetZoneByPath("LDAP://CN=research,CN=zones,CN=centrify,CN=program
data,DC=arcade,  
DC=com")  
'Display the list of group profiles defined for the zone  
set objGroupProfiles = objZone.GetGroupUnixProfiles  
for each objProfile in objGroupProfiles  
wScript.Echo “Group profile name: “ & objProfile.Name  
next  
...