Tracking changes to Active Directory users and systems

5,582

Solution 1

This page describe how to track and monitor AD changes based on the security event. This solution uses the Windows event forwarding, scheduled task triggered by event ID, and offers an interface to organize them and find them quickly. The advantage is also to keep an history and it is free. Here: https://www.shellandco.net/audit-the-active-directory/

Solution 2

Active Directory Auditing

I'm going to link-only you because frankly, that's too big of a subject for me to regurgitate, and it's not going away any time soon. Read that. It should fit your needs.

If that's overkill, and you just want to see when things move, look in to the PowerShell commands Get-ADUser, Get-ADOrganizationalUnit, Get-ADComputer, Export-CSV, and Compare-Object. With a little creativity, you can update a CSV (which can be opened as a spreadsheet) once a month or so and compare changes. Note that you won't be able to tell who moved what, just that things moved. I do this simply to be aware of changes; I don't really care who monkeyed with AD.

Note that you will need a Domain Controller set up for AD + PowerShell to use the AD* commands.

Share:
5,582

Related videos on Youtube

user280995
Author by

user280995

Updated on September 18, 2022

Comments

  • user280995
    user280995 over 1 year

    How can I track changes (creation, deletion, moves, etc.) to users and systems on an Active Directory Domain?