Figuring Out Users Common Name

Started by geauga, December 28, 2015, 06:53:49 AM

Previous topic - Next topic

geauga

I am using wntUserInfo to determine a users username.  I now need to determine whether they are a member of an AD group.  I have tried using the ADSI extender to build a LDAP query to no avail.  Any suggestions?

td

You can use the ADSI extender to easily check group membership using the dsIsMemberGrp function.  Common problems include incorrect user or group path, or  insufficient privileges.   You do know how to use the dsFindPath function to obtain the full LDAP path of a user from the sAMAcountName returned by wntUserInfo?
"No one who sees a peregrine falcon fly can ever forget the beauty and thrill of that flight."
  - Dr. Tom Cade

ChuckC

It most definitely needs to be done via ADSI, either using the ADSI extender, or using the ADSI COM interfaces.  The NT extender simply does not have access to that information via the Win32 API functions that access AD through the legacy SAM database interfaces.