vote up 0 vote down star

Hi, I want to query active directory using VBScript (classic ASP). How can I accomplish that?

Thank you

flag

14% accept rate
1  
have you ever y=used google? – Shoban Jul 7 at 4:23
@Shoban: he used google OpenId – Darnell Jul 7 at 5:03

2 Answers

vote up 1 vote down

To look at all the members of an OU, try this...

Set objOU = GetObject("LDAP://OU=YourOU,DC=YourDomain,DC=com")
For each objMember in ObjOU  ' get all the members'

    ' do something'

Next

To do a custom search for DNs try this...

set conn = createobject("ADODB.Connection")
Set iAdRootDSE = GetObject("LDAP://RootDSE")
strDefaultNamingContext = iAdRootDSE.Get("defaultNamingContext")
Conn.Provider = "ADsDSOObject"
Conn.Open "ADs Provider"

strQueryDL = "<LDAP://" & strDefaultNamingContext & ">;(&(objectCategory=person)(objectClass=user));distinguishedName,adspath;subtree"
set objCmd = createobject("ADODB.Command")
objCmd.ActiveConnection = Conn
objCmd.Properties("SearchScope") = 2 ' we want to search everything
objCmd.Properties("Page Size") = 500 ' and we want our records in lots of 500 

objCmd.CommandText = strQueryDL
Set objRs = objCmd.Execute

While Not objRS.eof

	' do something with objRS.Fields("distinguishedName")'
	objRS.MoveNext
Wend
link|flag
Ken, if I wanted to get the "sAMAccountName" value for a particular FirstName & LastName value, based on your first example, I would do If ObjOU.FirstName = "Alan" and ObjOU.LastName = "Smith" then sVariable = ObjOU.sAMAccountName Would that be correct? – unknown (google) Jul 7 at 18:53
A better way would be to actually use the particular firstname/lastname you are looking for in the query... strQueryDL = "<LDAP://" & strDefaultNamingContext & ">;(&(objectCategory=person)(objectClass=user)(firstName="Alan")(lastName="Smith");distinguishedName,adspath;subtree" ... ' do something with objRS.Fields("sAMAccountName")' – Ken Hughes Jul 16 at 1:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.