Bilgisayar Neden Kapanmış Powershell İle Logları Görme
H erhangi bir sebepten dolayı kapanmış veya yeniden başlatılmış bilgisayarlar event ID kaydı oluşturur. Bu EventID kaydını powershell ile almak için; Get-EventLog System | Where-Object {$_.EventID -eq "1074" -or $_.EventID -eq "6008" -or $_.EventID -eq "1076"} | ft Machinename, TimeWritten, UserName, EventID, Message -AutoSize -Wrap | Out-File C:\systemShutdownRestart.txt Komutunu kullanabilisiniz.