PowerShell command to find all disabled users in Active Directory
PowerShell command to find all disabled users in Active Directory
Here is a quick powershell command to find all users inside of your Active Directory domain that have been marked as disabled (this will exclude disabled computers):
Get-ADUser -Filter {Enabled -eq $false} | FT samAccountName
Additionally, you can specify which additional options you would like to show by change the filter table command we are piping the results to. For example, this command will show the samAccountName, first name, and last name of the disabled users.
Get-ADUser -Filter {Enabled -eq $false} | FT samAccountName, GivenName, Surname
If you want no formatting whatsoever and have AD spit a bunch of information back at you, try running just the Get-ADUser part with the filter applied.
Get-ADUser -Filter {Enabled -eq $false}
The following command below can be used to pull a list of disabled users and computers:
Search-ADAccount -AccountDisabled
So, that’s all in this blog. I will meet you soon with next stuff. Have a nice day!!!
Guys please don’t forget to like and share the post. Also join our WindowsTechno Community and where you can post your queries/doubts and our experts will address them.
You can also share the feedback on below windows techno email id.
If you have any questions feel free to contact us on admin@windowstechno.com also follow us on facebook@windowstechno to get updates about new blog posts.