L
LR
I have created a vb application to retrieve User information from AD using
DirectoryServices and it retrieves the default properties ok.
Dim entry As New DirectoryServices.DirectoryEntry _
("LDAP://" & strserver & "/ou=OU_XP_Users,dc=corp,dc=romtech,dc=com")
Dim mySearcher As New DirectoryServices.DirectorySearcher(entry)
Dim result As DirectoryServices.SearchResult
The problem is when I use the
PropertiesToLoad.Add("phone") for sdditional properties the
DirectoryServices findone only returns the adspath.
How do I return additional properties?
Thank you
DirectoryServices and it retrieves the default properties ok.
Dim entry As New DirectoryServices.DirectoryEntry _
("LDAP://" & strserver & "/ou=OU_XP_Users,dc=corp,dc=romtech,dc=com")
Dim mySearcher As New DirectoryServices.DirectorySearcher(entry)
Dim result As DirectoryServices.SearchResult
The problem is when I use the
PropertiesToLoad.Add("phone") for sdditional properties the
DirectoryServices findone only returns the adspath.
How do I return additional properties?
Thank you