File permission dialog

S

Sharon

Hi.
I need to implement a web based file permission dialog.
For this i need to get the identities of all NT users.
I can get the current identity, but have no idea of how to get all
identities.
Is there a way to query the domain controller?
Thanks.
 
E

Edge

Sharon said:
Hi.
I need to implement a web based file permission dialog.
For this i need to get the identities of all NT users.
I can get the current identity, but have no idea of how to get all
identities.
Is there a way to query the domain controller?
Thanks.

Use the System.DirectoryServices namespace:

Dim entry As DirectoryEntry = New DirectoryEntry("LDAP://<DomainNameHere>")
For Each child As DirectoryEntry In entry.Children
' do something
Next
 

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

Members online

No members online now.

Forum statistics

Threads
474,431
Messages
2,571,677
Members
48,796
Latest member
Greg L.

Latest Threads

Top