Group
Gets the Active Directory group object associated with the specified GroupUnixProfile object.
Syntax
IGroup Group {get;}
Property value
The Active Directory group object associated with the UNIX group profile.
Example
The following code sample illustrates using Group in a script:
... 'Identify the zone you want to work with set objZone = cims.GetZone("ajax.org/UNIX/Zones/eur007") 'Get the UNIX group profile you want to work with set objProfile = objZone.GetGroupUnixProfileByGid(“905”) ‘Display the LDAP path to the profile’s Active Directory group wScript.Echo "LDAP path: " & objProfile.Group.ADsPath ...