Contact Info

Crumbtrail

ActiveXperts.com » Administration » Scripts » Adsi

List All the Local Groups a User Belongs To in Windows

You can use any of the VBScript programs below in ActiveXperts Network Monitor. Click here for an explanation about how to include scripts in ActiveXperts Network Monitor.

List All the Local Groups a User Belongs To in Windows using VBScript, WMI and LDAP

Example(s)

strComputer = "atl-win2k-01"
Set colGroups = GetObject("WinNT://" & strComputer & "")
colGroups.Filter = Array("group")

For Each objGroup In colGroups
    For Each objUser in objGroup.Members
        If objUser.name = "kenmyer" Then
            Wscript.Echo objGroup.Name
        End If
    Next
Next