Tools Links Login

Get NT User Info (FullName, Groups) using ADSI

Example code showing how one may extract NT Domain User information using ADSI (Active Directory Service Interfaces).
This code simply extracts a user's FullName and lists the Groups to which he/she belongs, given his username.
This code will work across domains, provided the correct authentication values (username, password) are inserted.

Original Author: Shannon Norrell

Assumptions

Uses ADSI (Active Directory Services) 2.0 or later.

Returns

Example from IMMEDIATE WINDOW:
==================================================
NT UserName Webdood
FullName Shannon Norrell
This user belongs to the following NT Groups:
Domain Users

API Declarations

Must Reference the ActiveDS Type Library. (activeds.tlb)

Code

Private oIADS As ActiveDs.IADsContainer
Private oUser As ActiveDs.IADsUser
Private oGroup As ActiveDs.IADsGroup
Private Sub Form_Load()
  txtDomain = "MYDOMAIN"
  usrName = "Administrator"
  usrPassword = "sa"
  usrNameOfInterest = "WebDood"
  
  Set oIADS = GetObject("WinNT:").OpenDSObject("WinNT://" & txtDomain, usrName, usrPassword, 1)
  Set oUser = oIADS.GetObject("user", usrNameOfInterest)
  With oUser
   Debug.Print "NT UserName" & Space$(8) & .Name
   Debug.Print "FullName" & Space$(11) & .FullName
   Debug.Print "This user belongs to the following NT Groups:"
   For Each oGroup In .Groups
     Debug.Print vbTab & oGroup.Name
   Next
  End With
  
End Sub

About this post

Posted: 2002-06-01
By: ArchiveBot
Viewed: 134 times

Categories

Visual Basic 6

Attachments

No attachments for this post


Loading Comments ...

Comments

No comments have been added for this post.

You must be logged in to make a comment.