January 2015
Intermediate to advanced
230 pages
5h 4m
English
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( ...Read now
Unlock full access