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


Answers:


23

建立在克里斯蒂安的答案之上...使用PowerShell:

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

这些服务状态更改事件中的任何一个是否仍记录在Windows 10中?(例如,当我执行“ net start spooler”时,不会为我生成任何条目。)
StackzOfZtuff

4

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


2
这是事件查看器-> Windows日志->系统,其中源是服务控制管理器。
ThomasH

并非所有服务都在事件日志中列出,例如,没有事件日志开始条目即可运行BitLocker驱动器加密服务。
SharpC
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.