show/hide this revision's text 3 correction to a detail

If using an ldap query (not sure if you need the server name in there in your case):

<LDAP://SERVERNAME/DC=bobdom,DC=net>;(&(objectClass=user)(mail=mike.spencer@kenblanchard.com));

Trying it out in my own environment, it looks like this (with a couple things genericized):

<LDAP://SERVERNAME/DC=bobdom,DC=net>;(&(mail=email@company.com));name,mail,member,description,memberOf,userParameters,userAccountControl,whenCreated,CN;subTreeCount=1

And the whole batch looks like this (in asp; if done in a .vbs file you'll need to change the Server.CreateObject to just CreateObject... I think).

Set oCon    	= Server.CreateObject("ADODB.Connection")
oCon.Provider   = "ADsDSOObject"
oCon.Open "ADProvider", "ADUsername", "ADPassword"

Set oCmd    	= Server.CreateObject("ADODB.Command")
Set oCmd.ActiveConnection = oCon

sQuery = "<LDAP://SERVERNAME/DC=bobdom,DC=net>;(&(mail=email@company.com));name,distinguishedName,physicalDeliveryOfficeName;subTreeCount=1>"

oCmd.CommandText = sQuery
Set ADRecordSet = oCmd.Execute

I'm assuming physicalDeliveryOfficeName is in your schema (it's not in mine).

You may need to fiddle with subTreeCountas well.

show/hide this revision's text 2 refined a couple details to more closely address question

If using an ldap query (not sure if you need the server name in there in your case):

<LDAP://SERVERNAME/DC=bobdom,DC=net>;(&(objectClass=user)(mail=mike.spencer@kenblanchard.com));

Trying it out in my own environment, it looks like this (with a couple things genericized):

<LDAP://SERVERNAME/DC=boddom,DC=net>;(&(mail=email@company.com));name,mail,member,description,memberOf,userParameters,userAccountControl,whenCreated,CN;subTreeCount=1

<LDAP://SERVERNAME/DC=bobdom,DC=net>;(&(mail=email@company.com));name,mail,member,description,memberOf,userParameters,userAccountControl,whenCreated,CN;subTreeCount=1

And the whole batch looks like this (in asp; if done in a .vbs file you'll need to change the Server.CreateObject to just CreateObject... I think).

Set oCon    	= Server.CreateObject("ADODB.Connection")
oCon.Provider   = "ADsDSOObject"
oCon.Open "ADProvider", "ADUsername", "ADPassword"

Set oCmd    	= Server.CreateObject("ADODB.Command")
Set oCmd.ActiveConnection = oCon

sQuery = "<LDAP://SERVERNAME/DC=boddom,DC=net>;(&(mail=email@company.com));name,mail,member,description,memberOf,userParameters,userAccountControl,whenCreated,CN;subTreeCount=1>"

<LDAP://SERVERNAME/DC=bobdom,DC=net>;(&(mail=email@company.com));name,distinguishedName,physicalDeliveryOfficeName;subTreeCount=1>"

oCmd.CommandText = sQuery
Set ADRecordSet = oCmd.Execute

I'm assuming physicalDeliveryOfficeName is in your schema (it's not in mine). You may need to fiddle with subTreeCount as well.

show/hide this revision's text 1

If using an ldap query (not sure if you need the server name in there in your case):

<LDAP://SERVERNAME/DC=bobdom,DC=net>;(&(objectClass=user)(mail=mike.spencer@kenblanchard.com));

Trying it out in my own environment, it looks like this (with a couple things genericized):

<LDAP://SERVERNAME/DC=boddom,DC=net>;(&(mail=email@company.com));name,mail,member,description,memberOf,userParameters,userAccountControl,whenCreated,CN;subTreeCount=1

And the whole batch looks like this (in asp; if done in a .vbs file you'll need to change the Server.CreateObject to just CreateObject... I think).

Set oCon    	= Server.CreateObject("ADODB.Connection")
oCon.Provider   = "ADsDSOObject"
oCon.Open "ADProvider", "ADUsername", "ADPassword"

Set oCmd    	= Server.CreateObject("ADODB.Command")
Set oCmd.ActiveConnection = oCon

sQuery = "<LDAP://SERVERNAME/DC=boddom,DC=net>;(&(mail=email@company.com));name,mail,member,description,memberOf,userParameters,userAccountControl,whenCreated,CN;subTreeCount=1>"

oCmd.CommandText = sQuery
Set ADRecordSet = oCmd.Execute