ADsPath

Gets the LDAP path for the specified Active Directory group.

Syntax

string ADsPath {get;}

Property value

The LDAP path for the Active Directory group object.

Example

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

...  
'Identify the zone you want to work with  
set objZone = cims.GetZone("sierra.com/program data/centrify/zones/market
research")  
'Identify the Active Directory group  
Set objGroup = cims.GetGroup("sierra.com/Groups/Managers”)   
‘Display the LDAP for the specified group  
wScript.Echo "LDAP path: " & objGroup.ADsPath  
...