System.DirectoryServices and WinNT provider

  • Thread starter Trevor Lawrence
  • Start date
T

Trevor Lawrence

I am trying to clean up the remnants of an old NT4 domain and am trying to
create a DirectoryEntry object referring to an NT4 group via the WinNT
provider. That part works fine, but I cannot find a way to get the
membership of the group. The same kind of operation works fine on members
of an AD group via the AD LDAP provider.

Anyone know how I might get NT4 group members without using Interop?

Trevor
 
M

Marc Scheuner

I am trying to clean up the remnants of an old NT4 domain and am trying to
create a DirectoryEntry object referring to an NT4 group via the WinNT
provider. That part works fine, but I cannot find a way to get the
membership of the group. The same kind of operation works fine on members
of an AD group via the AD LDAP provider.
Anyone know how I might get NT4 group members without using Interop?

You won't be able to do that, I'm afraid. The WinNT provider only
gives you the group membership by calling the .Members method on the
IADsGroup interface.

Marc
 
T

Trevor Lawrence

I feared as much.

Trevor

Marc Scheuner said:
You won't be able to do that, I'm afraid. The WinNT provider only
gives you the group membership by calling the .Members method on the
IADsGroup interface.

Marc
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top