Last restart/start time of a windows service

windows-server-2008-r2

Is it possible to find out in Windows what the last restart time of a windows service is?

Best Answer

Building on Christian's answer... Use PowerShell:

(Get-EventLog -LogName "System" -Source "Service Control Manager" -EntryType "Information" -Message "*Computer Browser service*running*" -Newest 1).TimeGenerated;