powershell script to find the user account lockedout status

import-module ActiveDirectory

#get list of accounts to check
$systemAccounts = Get-Content “c:ScriptsSystemAccounts.txt”

#check if any of these accounts are locked
$lockedAccounts = Search-ADAccount –LockedOut | Where {$systemAccounts -contains $_.Name} | echo Name

#not yet tested this -draft

Leave a Comment