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.
On Windows PowerShell, execute the following command to check Windows Boot Time:
Get-ComputerInfo -Property OsLastBootUpTime
Like systeminfo
, the Get-ComputerInf
o 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.
You can use both commands to find the last boot time on Windows 10, Windows 11, and Windows Server.