All members of a group may not be returned when you enumerate members of a group by using the Active Directory Service Interfaces WinNT provider

This article provides a solution to an issue that all members of a group may not be returned when you enumerate members of a group by using the Active Directory Service Interfaces WinNT provider.

Applies to:   Windows Server 2012 R2
Original KB number:   321538

Symptoms

When you enumerate members of a group by using the Active Directory Service Interfaces (ADSI) WinNT provider, and you use a binding string, a problem may occur. Some members of the group may not be returned if the group that you are enumerating has members of the following:

  • A local group that contains domain users and domain groups as members
  • A domain local group that contains groups from trusted domains as members

Workaround

You can use the GetObject method to obtain the full member list. The GetObject method uses the credentials for the currently logged on user. The following code example demonstrates this.

GetObject("WinNT://<server>/<group>,group")

If the account that you want to use for enumerating the group is not the currently logged on user, you can use impersonation before you use the GetObject method.

Status

This behavior is by design.

Steps to reproduce the problem

The Active Directory Service Interfaces WinNT provider does not connect to more than one server to compile the member list. This problem occurs if explicit credentials are passed. Therefore, only a partial member list is returned. For example, if you run the following script to enumerate a local group that contains a group from a trusted domain, all members of the group are returned, except the group from the trusted domain.

'Start of the script
Dim oRoot
Dim oSourceGroup
Dim oMember
Const ADS_SECURE_AUTHENTICATION=1

'Binding
Set oRoot = GetObject("WinNT:")
Set oTargetGroup = oRoot.OpenDSObject("WinNT://<server>/<group>,group", "<domain>\<user>", "<password>",ADS_SECURE_AUTHENTICATION)'All of the following are placeholders: <server> <group> <domain> <user> <password>
msgbox oTargetGroup.ADSPath

For Each oMember in oTargetGroup.Members
    msgbox oMember.ADsPath
Next
'End of the script

Important

We do not recommend that you pass credentials in Active Directory Service Interfaces by using the Active Directory Service Interfaces WinNT provider.

For more information, see User authentication issues with the Active Directory Service Interfaces WinNT provider.

References

Active Directory Service Interfaces