Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

VB.NET Ldap

Options
  • 01-05-2007 12:12pm
    #1
    Registered Users Posts: 500 ✭✭✭


    Im using VB.NET (LDAP) to gain access to data in my active directory.
    I have it workng - kinda. It will return everything from the ROOT downwards. the whole tree structure
            Dim entry As New DirectoryEntry("LDAP://xxx.ie")
            Dim searcher As New DirectorySearcher("(&(objectCategory=Person)(objectClass=User))")
            searcher.SearchRoot = entry
            searcher.PropertiesToLoad.Add("givenName")
            Dim result As SearchResult
            For Each result In searcher.FindAll()
                Dim strFirstName As String = GetProperty(result, "givenName")
                MsgBox(strFirstName)
            Next
    
    Now what i want to to is delve into the tree structure - any tips.
    What i have been trying is providing an the OU eg :
    Dim entry As New DirectoryEntry("LDAP://xxx.ie/ou=group1")
    
    But this does not work. I need help badly to get into the tree structur - ie "group1"


Advertisement