There are four ready ways to figure out when your computer was booted (or rebooted):
systeminfo | find /i “Boot Time”
System Boot Time: 20/03/2015, 12:03:04 PM
Get-CimInstance -ClassName win32_operatingsystem | select csname, lastbootuptime
For more information see THIS TechNet article.
wmic os get lastBootUpTime
LastBootUpTime
2015032014403.105679+120
Note that this is in Milliseconds.
For more information see THIS article.
This website uses cookies.