ProfileADsPath
Gets the LDAP path to a computer object’s UNIX profile.
Syntax
string ProfileADsPath {get;}
Property value
The LDAP path for the computer profile associated with the computer object.
Example
The following code sample illustrates using ProfileADsPath
for a computer object in a script:
...
set objZone = cims.GetZoneByPath("LDAP://CN=research,CN=zones,
CN=centrify,CN=program data,DC=sierra,DC=com")
'Identify the computer account
Set objComp = cims.GetComputerByPath("LDAP://CN=magnolia,
CN=computers,DC=sierra,DC=com”)
'Display the LDAP path to the computer’s UNIX profile
wScript.Echo “LDAP path: “ & objComp.ProfileADsPath
...