Hello,
I need to list all Active Directory group's members - can I do this without using LDAP queries with PyWin's win32security, for instance?
I can lookup accounts' sids and names using it (LookupAccountSid
and LookupAccountName
), but how about getting all group members? For now I cannot figure out what functions I should use.
I have account SID as an input parameter and its Domain name.
Thanks!