your home for end-user virtualization!

List Active Directory users that have never logged in including built-in users using PowerShell

I was trying to find a way to identify what the unused user accounts were in my AD environment. I started playing with PowerShell’s get-aduser cmd-let. The working script that I came up with is below.

get-aduser -f {-not ( lastlogontimestamp -like "*") -and (enabled -eq $true)} | select name

Tags: ,

Follow Me!

Visit Us On TwitterVisit Us On FacebookVisit Us On Google PlusVisit Us On YoutubeVisit Us On Linkedin

Categories

Search VMwareAdmins