I am attempting to scan a Windows Active Directory using wincom32.client and LDAP to pull a list of users and their attributes.

My problem is that I am unable to get the search working:
Code:
import win32com.client, win32net
strFQADDomainName = win32com.client.GetObject('LDAP://rootDSE').Get("defaultNamingContext")
arrDomainObjects = win32com.client.GetObject("LDAP://" + strFQADDomainName
...