Command To Check Windows Boot Time in Windows 10/11/Server

To check Windows boot time from the CMD, you can use the systeminfo command. To check the boot time from PowerShell, use the Get-ComputerInfo command.

To check Windows boot time from CMD, run the following command:

systeminfo | findstr /i /c:"boot time"

The systeminfo command displays information about your computer. In the previous example, we filtered the systeminfo output using findstr to show the last boot time without all other information.

windows boot time

On Windows PowerShell, execute the following command to check Windows Boot Time:

Get-ComputerInfo -Property OsLastBootUpTime

Like systeminfo, the Get-ComputerInfo cmdlet displays various information about your computer. In the previous example, we used the -Property parameter to get the last boot time without other details.

PowerShell command to check last boot time
PowerShell command to check last boot time

You can use both commands to find the last boot time on Windows 10, Windows 11, and Windows Server.