We are losing LDAP access to AD due to the implementation of NetIQ's Directory and Resource Administration (DRA). We are being told that LDAP write ability will be removed and that we will have to utilize the DRA ADSI Provider for our access. We were given this example script for converting from LDAP to the DRA ADSI Provider:
***************************************
You have to install the DRA ADSI provider which is one of the clients you can choose when installing the client. It is not installed by default on the client
* Native ADSI
Set objUser = GetObject("LDAP://cn=sean,cn=users,dc=corp,dc=local")
strSam = objuser.get("SamAccountName")
wscript.echo "LoginName: " & strsam
* DRA ADSI
Set objUser = GetObject("OnePoint://cn=sean,cn=users,dc=corp,dc=local")
strSam = objuser.get("SamAccountName")
wscript.echo "LoginName: " & strsam
You can also specify the specific DRA server by specifying the path as
Set objUser =
GetObject("OnePoint://DRAservername/cn=sean,cn=users,dc=corp,dc=local")
We have installed the ADSI Provider, but so far we cannot get Hyena to interface with DRA. Does anyone know if this is possible? Does Hyena only support LDAP? Does anyone have experience with this type of configuration?
Thank you in advance!
***************************************
You have to install the DRA ADSI provider which is one of the clients you can choose when installing the client. It is not installed by default on the client
* Native ADSI
Set objUser = GetObject("LDAP://cn=sean,cn=users,dc=corp,dc=local")
strSam = objuser.get("SamAccountName")
wscript.echo "LoginName: " & strsam
* DRA ADSI
Set objUser = GetObject("OnePoint://cn=sean,cn=users,dc=corp,dc=local")
strSam = objuser.get("SamAccountName")
wscript.echo "LoginName: " & strsam
You can also specify the specific DRA server by specifying the path as
Set objUser =
GetObject("OnePoint://DRAservername/cn=sean,cn=users,dc=corp,dc=local")
We have installed the ADSI Provider, but so far we cannot get Hyena to interface with DRA. Does anyone know if this is possible? Does Hyena only support LDAP? Does anyone have experience with this type of configuration?
Thank you in advance!
Comment