December 19th, 2012

PowerTip: Search for Inactive User Accounts in Windows Server 2012 Active Directory

Doctor Scripto
Scripter

Summary: Learn how to use Windows PowerShell to search for inactive user accounts in Active Directory for Windows Server 2012.

Hey, Scripting Guy! Question How can I query inactive user accounts in my Windows Server 2012 Active Directory environment?

Hey, Scripting Guy! Answer Charlotte Windows PowerShell user group member Brian Wilhite says: You can use the ActiveDirectory module that contains the Search-ADAccount cmdlet used to query inactive user and computer accounts. For user accounts only, you’ll use the UsersOnly parameter.

Search-ADAccount -AccountInactive -UsersOnly

You can also use the TimeSpan parameter to specify account inactivity. the example below specifies 30 days of inactivity.

Search-ADAccount -AccountInactive -UsersOnly -TimeSpan 30.00:00:00

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.