One of my servers is shutting down randomly (we think power issue)
I am using the below command to get the dates of the shut down Get-EventLog System | Where-Object {$_.EventID -eq "1074" -or $_.EventID -eq "6008" -or $_.EventID -eq "1076"} | ft Machinename, TimeWritten, UserName, EventID, Message -AutoSize -Wrap
however I am looking for an internal or even a third party GUI app that gives me some user friendly data about the times and the reasons of shut down.
Search for relevant events in Event Viewer. E.g
6006
,1074
, etc. You can even make pre-defined filter logs so you only have to look at that one log and not constantly re-make your filters.