This post originated from an RSS feed registered with .NET Buzz
by Darrell Norton.
Original Post: Using Active Directory in .NET
Feed Title: Darrell Norton's Blog
Feed URL: /error.htm?aspxerrorpath=/blogs/darrell.norton/Rss.aspx
Feed Description: Agile Software Development: Scrum, XP, et al with .NET
Most of the applications I’ve developed have used Active Directory in one capacity or another. .NET support for Active Directory in v1.0-1.1 pretty much sucks. Things are supposed to get better in 2.0, but for now these resources are invaluable:
Accessing Active Directory Through the .NET Framework by Robert Chartier – this is an excellent article on using the System.DirectoryServices namespace to manage users. Robert also creates a sample data access layer wrapper for modifying users. Nice!
Microsoft Visual Studio.NET Server Explorer Extensions for Active Directory – This server explorer add-in allows you to build Active Directory queries. After building queries, the add-in will create System.DirectoryServices.DirectorySearcher and System.DirectoryServices.DirectoryEntry objects. These objects are ready to be used as part of your application. 1373 KB