Huck
Huck

Reputation: 35

Local active directory access and management for development?

In an application we are developpment, we are accessing Active Directory users and groups using the .Net DirectoryEntry and DirectorySearcher classes. Managing the test groups and users during development is getting tedious.

I am wondering if there was an easy way to setup a simple local AD in which we could easily create / delete users and assign them or remove them from groups as we want with the DirectoryEntry / DirectorySearcher classes?

Thanks.

Upvotes: 2

Views: 585

Answers (1)

Will Marcouiller
Will Marcouiller

Reputation: 24132

ADAM will allow you to install a local AD and run queries against it with the DirectoryServices namespace in .NET.

Active Directory Application Mode (ADAM)

Only for your information, there is another AD related link that I find pretty interesting. I don't know if it's going to be useful for you, but has been for me, that is: How to: (Almost) Everything in Active Directory.

Upvotes: 2

Related Questions