WinBatch® Technical Support Forum

Archived Boards => Network Extenders => Topic started by: geauga on December 28, 2015, 06:53:49 AM

Title: Figuring Out Users Common Name
Post by: geauga on December 28, 2015, 06:53:49 AM
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?
Title: Re: Figuring Out Users Common Name
Post by: td on December 29, 2015, 07:46:49 AM
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?
Title: Re: Figuring Out Users Common Name
Post by: ChuckC on December 29, 2015, 09:14:49 AM
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.