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
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

VB.NET Ldap

  • 01-05-2007 11:12am
    #1
    Registered Users, Registered Users 2 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