ADsPath

Gets the LDAP path to the UNIX group profile object.

Syntax

string ADsPath {get;}

Property value

The LDAP path to the UNIX group profile.

Example

The following code sample illustrates using `ADsPath 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 LDAP path for this group profile  
wScript.Echo "LDAP Path: " & objGroupUnixProfile.ADsPath  
...