从命令行,如何查找 Windows 7 计算机上次重启的时间?
答案1
通过转到“开始”并打开“cmd”来打开命令提示符。然后,您将看到一个命令提示符窗口,您需要在其中输入系统信息以下命令:
C:\> systeminfo | find "Boot"
System Boot Time: 05/06/2013, 12:55:07
答案2
tasklist /v | find "Idle"
在 Windows 7 上,任务列表将输出一些内容(丑陋且包装精美),例如:
System Idle Process 0 Services 0 24 K Unk
nown NT AUTHORITY\SYSTEM 449:12:23 N/A
在这种情况下,这意味着自上次重启以来系统空闲了 449 小时(将近 20 天)。当然,这是一个粗略近似自重启以来的时间;它不包括实际有用的 CPU 时间。
答案3
使用
net statistics workstation | find "Statistics since"
或者
net statistics server | find "Statistics since"
这些命令可以缩写为“ net stats work
”或“ net stats srv
”。