Automation: Comparing Account Inventory to Active Directory Accounts

Home / Automation / Automation: Comparing Account Inventory to Active Directory Accounts
Automation: Comparing Account Inventory to Active Directory Accounts

This is the first time I have shared something like this. I’ve actually created a ton of python scripts to automate things that need to be done at a certain frequency. It just speeds up the process. If you like this kind of info, let me know in the comments and I will share more. I’m also planning on adding them to a community website soon.

I use python because it works with Windows, Mac, etc. as long as python is installed.

This script is useful if you keep an account inventory of all authorized accounts. A lot of companies want to use their AD export as evidence, but if you have a list of accounts that you know are authorized, then you can use it as a source of truth and compare it to your AD export to find any accounts that are not authorized, possibly ones that someone forgot to disable or remove, etc.


This is what the Script Does:

Finds missing, inactive, or unauthorized accounts
Detects mismatches in security groups, expiration dates, and privileged accounts
Generates an Excel report (discrepancy_report.xlsx)
Sends an Email Notification (SMTP-based) with detected discrepancies
Sends logs to Microsoft Sentinel for real-time security monitoring


This script assumes:
• The Account Inventory is in a CSV file named account_inventory.csv.
• The Active Directory export is in a CSV file named active_directory_export.csv.
• Both files contain a “User ID” column (used for matching users).

How to Use It

  1. Copy the code below and paste it into a text editor like Notepad or BbEdit, change the variables in the Send Email Notification for Discrepancies and the Log Discrepancies to Microsoft Sentinel sections.
  2. Save the text file as account-comparison.py
  3. Export Account Inventory (save as account_inventory.csv).
    If your Account Inventory is currently in Excel, save it as account_inventory.csv.
    Ensure it contains columns like:
    User ID, Account Status, Security Group(s), Account Expiration Date, Privileged Account
  4. Export Active Directory accounts (e.g., using PowerShell, save as active_directory_export.csv):
    Get-ADUser -Filter * -Property sAMAccountName, Enabled, MemberOf, AccountExpirationDate, AdminCount |
    Select-Object sAMAccountName, Enabled, MemberOf, AccountExpirationDate, AdminCount |
    Export-Csv -Path “C:\active_directory_export.csv” -NoTypeInformation
  5. Move active_directory_export.csv to the same directory as the script.
  6. Once both CSV files are in place, run the script to compare them and generate a discrepancy report.
  7. Run the script in Python: python account-comparison.py
  8. The script outputs discrepancy_report.xlsx, containing:
    • Accounts missing in AD
    • Accounts missing in Inventory
    • Status mismatches
    • Security group mismatches
    • The script will also send detected discrepancies to Microsoft Sentinel.

Leave a Reply

Your email address will not be published.

Social Share Buttons and Icons powered by Ultimatelysocial