GurdeepS Asked: 2012-08-12 03:28:50 +0800 CST2012-08-12 03:28:50 +0800 CST 2012-08-12 03:28:50 +0800 CST Last restart/start time of a windows service 772 Is it possible to find out in Windows what the last restart time of a windows service is? windows-server-2008-r2 2 Answers Voted Simon Catlin 2012-08-12T12:24:33+08:002012-08-12T12:24:33+08:00 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; Christian 2012-08-12T05:41:53+08:002012-08-12T05:41:53+08:00 Look in the event log: The service control manager logs every time a service is stopped or started.
Building on Christian's answer... Use PowerShell:
Look in the event log: The service control manager logs every time a service is stopped or started.