n a Windows environment, which command should you use in order to show the last time your machine was rebooted?
- systeminfo | find "System Boot Time"
- net stats workstation
- uptime
- systeminfo | find "System Uptime"
EXPLANATION
systeminfo
command is almost right what you need. On English Windows 7 you can also do: systeminfo | find /i "Boot Time"
Or with the help of WMIC: wmic os get lastbootuptime
The main difference between Windows 7 and Windows XP that in Windows 7 Microsoft can show only last boot up time.
0 comments:
Post a Comment