Active Directory Powershell Sorgusu ile Logon Olmamış PC'leri Bulma
Son 1 yıl(365 Gün) Logon olmamış PC lerin bulunması için aşağıdaki komut setini kullanabilirsiniz.
$LLDate = (Get-Date).AddDays(-365)
Get-ADComputer -Filter * -Properties Name, LastLogonDate, DistinguishedName |
Where { $_.LastLogonDate -lt $LLDate } | Sort LastLogonDate -Descending |
FT Name, @{name="LastLogonDate";expression={($_.LastLogonDate).ToShortDateString()}}, DistinguishedName -AutoSize | Out-File C:\non-loggedon_Computers.txt
$LLDate = (Get-Date).AddDays(-365)
Get-ADComputer -Filter * -Properties Name, LastLogonDate, DistinguishedName |
Where { $_.LastLogonDate -lt $LLDate } | Sort LastLogonDate -Descending |
FT Name, @{name="LastLogonDate";expression={($_.LastLogonDate).ToShortDateString()}}, DistinguishedName -AutoSize | Out-File C:\non-loggedon_Computers.txt
Yorumlar