ID

Gets the unique identifier for the UNIX group profile from Active Directory.

Syntax

string ID {get;}

Property value

The unique identifier for this UNIX group profile.

Example

The following code sample illustrates using ID in a script:

...  
set objZone = cims.GetZoneByPath("LDAP://CN=research,CN=zones,
CN=centrify,CN=program data,DC=sierra,DC=com")  
'Identify the Active Directory group  
Set objGroup = cims.GetGroupByPath("LDAP://CN=managers,CN=groups,
DC=sierra,DC=com”)  
'Get the UNIX profile for the group in the zone  
set objGroupUnixProfile = objGroupUnixProfiles.Find(objZone)  
'Display the unique ID for this group  
wScript.Echo "Unique ID: " & objGroupUnixProfile.ID  
...