Windows 服务上次重启/启动时间

Windows 服务上次重启/启动时间

是否有可能在 Windows 中找出 Windows 服务的上次重启时间?

答案1

基于 Christian 的回答...使用 PowerShell:

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

答案2

查看事件日志:服务控制管理器每次停止或启动服务时都会进行记录。

相关内容