Last active
December 10, 2015 06:59
-
-
Save iqwirty/4398438 to your computer and use it in GitHub Desktop.
This script uses the Quest cmdlet Get-QADUser to find/display all disabled user objects.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-QADUser -Disabled ` | |
| Select Name, DisplayName, Department, WhenChanged ` | |
| Sort DisplayName ` | |
| Format-Table |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment