Finding all the disabled user accounts

Finding disabled user accounts in Active Directory is very simple. Each user object returned by the Get-ADuser cmdlet will have an Enabled property, which holds the value False when the user account is in the disabled state. Examining this value for all the user accounts in the domain will tell us how many accounts are currently in the disabled state.

The following script will query the current domain for disabled users and the exports to the CSV filename disabled-users.csv in the C:\temp folder. Make sure that the c:\temp folder exists, or you change the $OutputFilePath variable's value in the code to a folder path where you want the output to be placed:

Function Find-DisabledUsers { [CmdletBinding()] param( ...

Get Active Directory with PowerShell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.