import-module ActiveDirectory # Find computers created 45 days ago $time = (get-date).AddDays(-45) $comp = Get-ADComputer -Filter { createTimeStamp -gt $time } -Properties * $comp | ft name,LastLogonDate,IPv4Address,enabled,CanonicalName -AutoSize $comp | select name,LastLogonDate,IPv4Address,enabled,CanonicalName | Out-GridView
No comments:
Post a Comment