除了‘网络统计服务器/工作站’之外,我如何才能找到 Windows 服务器的上次重启时间?
答案1
开始 → 运行 → cmd.exe
:
systeminfo | find "System Boot Time"
或者对于较旧的操作系统版本(参见评论):
systeminfo | find "System Up Time"
答案2
过滤系统事件日志以查找事件 ID 6009。
答案3
打开 powershell 命令并运行它来查看所有历史记录...无需 UI :-)
get-eventlog System | where-object {$_.EventID -eq "6005"} | sort -desc TimeGenerated
答案4
如果您使用的是 Server 2008,您可以在“任务管理器”-“性能”选项卡上查看系统正常运行时间(以小时为单位)。据我所知,“网络统计信息...”方式是 Windows 2003 上唯一正确的方式。