The example below returns the full name from Active directory. How do I return other information such as email address etc?
Code:
Dim dsDirectoryEntry As DirectoryEntry
strPath = "WinNT://" & strDomain & "/" & strLogin
dsDirectoryEntry = New DirectoryEntry(strPath)
strFullName = CType(dsDirectoryEntry.Invoke("Get", "FullName"), String)
[\code]