Hello world!
For today’s quicky I thought I’d share another another Active Directory Script that shows all Disabled Users in an OU. I hope it can be helpful!
Import-Module ActiveDirectory $Usersaccountpath ="OU=Users,OU=Client,DC=DOMAIN,DC=PREFIX" $duuser = Get-ADUser -filter "enabled -eq 'FALSE'" -SearchBase $Usersaccountpath -Properties * | Select Name,SamAccountname,Description | Out-GridView -title "Select a user account or cancel" -PassThru
Advertisements