Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Accessing LDAP with VB.

1 view
Skip to first unread message

Steve Lloyd

unread,
Jul 26, 2004, 10:43:45 AM7/26/04
to
Hi,

I am trying to get someones email address out of the win 2003 server
Directory using there logon name and the following code.

Dim DSEntry As New System.DirectoryServices.DirectoryEntry("LDAP:" &
System.Environment.GetEnvironmentVariable("LOGONSERVER") & "/CN=" &
System.Enviroment.Username & ",CN=Users,DC=laxeypartners,DC=com")
EmailAddress = DSEntry.Properties("mail").Value.ToString()

However, for some users the directory display name is not the same as the
logon name. e.g. Directory name is John Smith and logon name is
John.Smith.

When I use the logon name in the above code it does not find an entry in the
directory.

Does anyone know of a method that i can use to extract the default email
address from the logon name.

Many thanks,

Steve Lloyd


Jared

unread,
Jul 27, 2004, 6:22:23 AM7/27/04
to
Something like this should work

Private Function GetEmailAddress() As String
Dim Root As New DirectoryEntry("LDAP://RootDSE")
Dim DomainNC As String = Root.Properties("defaultNamingContext").Value
Root = New DirectoryEntry("LDAP://" & DomainNC)
Dim Searcher As New DirectorySearcher(Root)
With Searcher
.Filter = "(sAMAccountName=" & Environment.UserName & ")"
.SearchScope = SearchScope.Subtree
.PropertiesToLoad.Add("mail")
End With
Dim Result As SearchResult = Searcher.FindOne
Dim EMailAddress As String
If Not Result Is Nothing Then
EMailAddress = Result.GetDirectoryEntry.Properties("mail").Value
End If
Return EMailAddress
End Function

"Steve Lloyd" <RemoveS...@laxeyRemovepartners.com> wrote in message
news:%23MTMI7x...@TK2MSFTNGP09.phx.gbl...

Steve Lloyd

unread,
Jul 27, 2004, 10:06:40 AM7/27/04
to
Perfect, thank you very much...


"Jared" <VB_Puz...@email.com> wrote in message
news:10gcb6s...@corp.supernews.com...

Jared

unread,
Jul 27, 2004, 6:00:26 PM7/27/04
to
You're welcome

"Steve Lloyd" <RemoveS...@laxeyRemovepartners.com> wrote in message

news:uEWcDL%23cEH...@TK2MSFTNGP09.phx.gbl...

0 new messages