Skip to content

Instantly share code, notes, and snippets.

@Kaidja
Last active March 6, 2018 19:17
Show Gist options
  • Select an option

  • Save Kaidja/f518488a37d450258ae4c2748afdbcf2 to your computer and use it in GitHub Desktop.

Select an option

Save Kaidja/f518488a37d450258ae4c2748afdbcf2 to your computer and use it in GitHub Desktop.
#AD Computer account last logon date
Get-ADComputer -Identity KLASSB315-2 -Properties LastLogonDate
#AD Computer account last logon date in days
$ADComputerInfo = Get-ADComputer -Identity PC1 -Properties LastLogonDate
$TimeSpan = New-TimeSpan -Start $ADComputerInfo.LastLogonDate -End (Get-Date)
$TimeSpan.Days
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment