top of page

PowerShell - Get Computers Stale +90 days

  • Writer: Jon Boyette
    Jon Boyette
  • Sep 27, 2022
  • 1 min read

Save as a .ps1, this outputs a csv to temp listing all AD computers that haven't checked in within 90 days.

$date = (Get-Date) - (New-TimeSpan -Days 90)

Get-ADcomputer -Filter 'lastLogondate -lt $date' | ft


# Select the canonicalName,lastlogondate and name for a more readable list

Get-ADcomputer -Filter 'lastLogondate -lt $date' -properties canonicalName,lastlogondate | select name,canonicalname,lastlogondate | Export-CSV c:\temp\ComputersStale90Days.csv -NoTypeInformation


 
 
 

Recent Posts

See All
PowerShell - List All Domain SPNs

Save as same List_ALL_SPNs.ps1 or similar, this LDap calls the Domain for all Service Principal names and accounts related #Build LDAP...

 
 
 
PowerShell - Start-Monitoring

This is a great script used to Monitor and Email if a server is up or down, once ran, and smtp and from address is set, then run:...

 
 
 

Comments


Post: Blog2 Post
  • Facebook
  • Twitter
  • LinkedIn

©2022 by Boyette Technical Services. Proudly created with Wix.com

bottom of page