vbscript ldap : Is there a way to query for physicalDeliveryOfficeName using the email address in active directory? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T04:02:29Z http://stackoverflow.com/feeds/question/282627 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/282627/vbscript-ldap-is-there-a-way-to-query-for-physicaldeliveryofficename-using-the 3 vbscript ldap : Is there a way to query for physicalDeliveryOfficeName using the email address in active directory? phill 2008-11-12T00:34:03Z 2009-03-10T03:04:18Z <p>I'm attempting to utilize vbscript to connect pull the physicalDeliveryOfficeName attribute in active directory by providing the email address. </p> <p>I know how to do it with a common name like the following:</p> <pre><code>Set MyUser = GetObject ("LDAP://cn=" &amp; uname &amp; ",ou=" &amp; strname &amp; ",DC=bobdom,DC=net") </code></pre> <p>however only the email address is available. Does anyone know how to do this? I've even tried </p> <pre><code>Set MyUser = GetObject ("LDAP://mail=" &amp; uname &amp; ",ou=" &amp; strname &amp; ",DC=bobdom,DC=net") </code></pre> <p>and that doesn't work. </p> http://stackoverflow.com/questions/282627/vbscript-ldap-is-there-a-way-to-query-for-physicaldeliveryofficename-using-the/288873#288873 1 Answer by Otus for vbscript ldap : Is there a way to query for physicalDeliveryOfficeName using the email address in active directory? Otus 2008-11-14T00:26:05Z 2008-11-14T16:13:29Z <p>If using an ldap query (not sure if you need the server name in there in your case):</p> <pre><code>&lt;LDAP://SERVERNAME/DC=bobdom,DC=net&gt;;(&amp;(objectClass=user)(mail=mike.spencer@kenblanchard.com)); </code></pre> <p>Trying it out in my own environment, it looks like this (with a couple things genericized):</p> <pre><code>&lt;LDAP://SERVERNAME/DC=bobdom,DC=net&gt;;(&amp;(mail=email@company.com));name,mail,member,description,memberOf,userParameters,userAccountControl,whenCreated,CN;subTreeCount=1 </code></pre> <p>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).</p> <pre><code>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 = "&lt;LDAP://SERVERNAME/DC=bobdom,DC=net&gt;;(&amp;(mail=email@company.com));name,distinguishedName,physicalDeliveryOfficeName;subTreeCount=1&gt;" oCmd.CommandText = sQuery Set ADRecordSet = oCmd.Execute </code></pre> <p>You may need to fiddle with subTreeCount.</p> http://stackoverflow.com/questions/282627/vbscript-ldap-is-there-a-way-to-query-for-physicaldeliveryofficename-using-the/309598#309598 1 Answer by phill for vbscript ldap : Is there a way to query for physicalDeliveryOfficeName using the email address in active directory? phill 2008-11-21T17:43:52Z 2008-11-21T17:43:52Z <p>I ended up writing the following: </p> <pre><code>Function getOffice (strname, uname) strEmail = uname WScript.Echo "email: " &amp; strEmail Dim objRoot : Set objRoot = GetObject("LDAP://RootDSE") Dim objDomain : Set objDomain = GetObject("LDAP://" &amp; objRoot.Get("defaultNamingContext")) Dim cn : Set cn = CreateObject("ADODB.Connection") Dim cmd : Set cmd = CreateObject("ADODB.Command") cn.Provider = "ADsDSOObject" cn.Open "Active Directory Provider" Set cmd.ActiveConnection = cn cmd.CommandText = "SELECT physicalDeliveryOfficeName FROM '" &amp; objDomain.ADsPath &amp; "' WHERE mail='" &amp; strEmail &amp; "'" cmd.Properties("Page Size") = 1 cmd.Properties("Timeout") = 300 cmd.Properties("Searchscope") = ADS_SCOPE_SUBTREE Dim objRS : Set objRS = cmd.Execute If IsNull(objRS.Fields(0)) = TRUE Then getOffice = "BLANK" Else getOffice = objRS.Fields(0) WScript.Echo getOffice End If Set objRS = Nothing Set cmd = Nothing Set cn = Nothing Set objDomain = Nothing Set objRoot = Nothing End Function </code></pre>