AD Queries
Hey all,
Does anyone know how to create an AD query to show when the last time someone logged in?
Thanks!!
Does anyone know how to create an AD query to show when the last time someone logged in?
Thanks!!
Comments
-
vCole Member Posts: 1,573 ■■■■■■■□□□
-
HeroPsycho Inactive Imported Users Posts: 1,940PowerShell Commands for Active Directory Quest Software
Use:
get-qaduser "Username" | select name,LastLogonTimestamp
You can then easily script it, or have a list of users you want to check this for at once, or any number of things. The possibilities are endless...Good luck to all!