ID

Gets the unique identifier for the specified Active Directory group.

Syntax

string ID {get;}

Property value

The GUID for the specified Active Directory group.

Example

The following code sample illustrates using ID for a group in a script:

...  
'Identify the zone you want to work with  
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”)   
‘Display the ID for the specified group  
wScript.Echo "Unique ID: " & objGroup.ID  
...