How to check Windows reboot time

In this article, we will see How to check Windows reboot time in different ways.

We are going to find Windows machine reboot time by using three ways.

1. By checking systeminfo:

Open Powershell/command prompt and run the below command.

systeminfo | find "System Boot Time"

How to check Windows reboot time

2. Run the following command on Powershell:

Get-CimInstance -ClassName win32_operatingsystem | select csname, lastbootuptime

3. BY querying Wmiobject:

(Get-WmiObject Win32_OperatingSystem).LastBootUpTime

The above information can be used to break down the

2022 is year
11 is month
15 is date
02 is hours
13 is minutes
55 is seconds

Leave a Reply

Your email address will not be published. Required fields are marked *