Use this [[PowerShell]] command to view the times that the [[Windows Event Log]] service started. ```PowerShell Get-WinEvent -FilterHashtable @{LogName='System'; Id=6005} -MaxEvents 10 | Select-Object TimeCreated, Message ```