Windows 2000 User list information

Hi is there way that I can get the user list of the windows 2000 or windows NT
Thankx
[94 byte] By [dinesh123] at [2007-11-17 17:11:13]
# 1 Re: Windows 2000 User list information
This is done using ADSI

Set o = GetObject("WinNT://Computer_name")
o.Filter = Array("User")
For Each a In o
Debug.Print a.Name, a.FullName, a.Description
Next
Set o = Nothing

Also try links http://www.aspfree.com/adsi/Default.asp and http://www.swynk.com/friends/policht/Art061802.asp
lehmaeit at 2007-11-10 0:22:36 >