I have this app that loops thru my AD and I would like it to notify me on changes. IE if someone changed their email, a user was added and so on. I was thinking of checksum DirectoryEntry object that gets the root AD object with all its children but i cant wrap my head around it.
DirectoryEntry entry =
new DirectoryEntry("LDAP://" + domain, username, password);
the app im making is a windows service that will check AD every hour for changes, sizeof is a nogo as microsoft dont want me to know the size of this managed object. any suggestions?