Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tracking changes in the Active Directory using C#

Is there a way to raise events if someone changed something in Active Directory, e.g. disable user account?

like image 987
kakopappa Avatar asked Sep 21 '10 05:09

kakopappa


1 Answers

Yes, there are mechanisms and hooks to be notified of certain changes being made in Active Directory - see the MSDN docs Change Notifications in Active Directory as a starting point and go from there.

From the looks of it, it's pretty low-level straight LDAP code ......

Also see this other Stackoverflow question on the topic, and the blog post by Ryan Dunn on how to Implement Change Notifications in .NET

like image 128
marc_s Avatar answered Sep 18 '22 20:09

marc_s