Avatar of john lambert
john lambert

asked on 

How to see Event ID 1149 using powershell or cmd (the names and IPs successfully logged in my remote)?

How to see Event ID 1149 using powershell or cmd (the names and IPs  successfully logged in my remote)?Especially the IP's
To see reboot history i use this syntax and works great.Can anyone help me?thank you

Get-EventLog System | Where-Object {$_.EventID -eq "1074" -or $_.EventID -eq "6008" -or $_.EventID -eq "1076"} | ft Machinename, TimeWritten, UserName, EventID, Message -AutoSize -Wrap
Powershell

Avatar of undefined
Last Comment
john lambert

8/22/2022 - Mon