Skip to content

Instantly share code, notes, and snippets.

@melignus
Created January 9, 2017 22:49
Show Gist options
  • Save melignus/fbba590bba272c374b10109e59cbe61b to your computer and use it in GitHub Desktop.
Save melignus/fbba590bba272c374b10109e59cbe61b to your computer and use it in GitHub Desktop.
Powershell User Last Logon Report
Get-ADUser -Filter * -Properties * |
Select-Object userPrincipalName,@{N='lastLogon'; E={[Datetime]::FromFileTime($_.lastLogon)}} |
ConvertTo-CSV
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment