Skip to main content

Posts

Showing posts from March, 2023

Export Active Directory Inactive Computer Objects - Powershell Script

$d = [DateTime]::Today.AddDays(-90) $default_log = 'D:\Temp\MS17-010\Stale_report.csv'   Foreach($domain in (get-adforest).domains){ Get-ADComputer  -Filter {(isCriticalSystemObject -eq $False)} -Properties UserAccountControl,` PwdLastSet,WhenChanged,SamAccountName,LastLogonTimeStamp,Enabled,admincount,IPv4Address,` operatingsystem,operatingsystemversion,serviceprincipalname  -server $domain | select @{name='Domain';expression={$domain}}, ` SamAccountName,operatingsystem,operatingsystemversion,UserAccountControl,Enabled, ` admincount,IPv4Address, ` @{Name="Stale";Expression={if((($_.pwdLastSet -lt $d.ToFileTimeUTC()) -and ($_.pwdLastSet -ne 0)` -and ($_.LastLogonTimeStamp -lt $d.ToFileTimeUTC()) -and ($_.LastLogonTimeStamp -ne 0))) {$True}else{$False}}}, ` @{Name="ParentOU";Expression={$_.distinguishedname.Substring($_.samaccountname.Length + 3)}} ` | export-csv $default_log -append -NoTypeInformation}