Skip to main content

View Windows System Uptime

Origionally posted October 2004 and updated January 2024 by Steve Sinchak

If you are curious about how long your Windows PC has been running since power on or the last reboot, this guide is for you. Refer to the instructions below for your version of Windows.

Windows 10 & Windows 11

Simply open up Task Manager by clicking on the Start Button, type in taskmgr, and it Enter OR use the keyboard shortcut Ctrl + Shift + Esc.

Once Task Manager is open click on the Performance tab/section and your "Up time" will be visible near the bottom left of the screen in the following format:

Days:Hours:Minutes:Seconds

Windows 11 Task Manager

Windows 8, 8.1, 7, Vista

  1. Open up Command Prompt by clicking on the Start Button and key in cmd and hit Enter.
  2. Type in systeminfo and hit Enter. Then, review the System Boot Time field and do subtraction.

Windows XP

  1. Open up Command Prompt by clicking on the Start Button and type in cmd and hit Enter.
  2. Type in systeminfo and hit Enter and check out the uptime field (you may need to scroll up as systeminfo provides a lot of useful info).

Bonus Powershell Method (for modern versions of Windows)

  1. Click on the start button, type in PowerShell and hit Enter.
  2. At the PowerShell prompt, key in (get-date) - (gcim win32_operatingsystem).lastbootuptime and hit Enter. No math is needed!
PS C:\Users\steve> (get-date) - (gcim win32_operatingsystem).lastbootuptime

Days              : 4
Hours             : 0
Minutes           : 15
Seconds           : 36
Milliseconds      : 351
Ticks             : 3465363515199
TotalDays         : 4.01083740185069
TotalHours        : 96.2600976444167
TotalMinutes      : 5775.605858665
TotalSeconds      : 346536.3515199
TotalMilliseconds : 346536351.5199

Related Posts


In the latest version of iOS Apple included a new feature called AirPrint. Designed to bring native printing support to the iOS platform it can be found on version 4.2 or later on devices such as the iPhone, iPod, and iPad. At launch only a handful of HP wireless printers could be used but with the help of this article it is possible to AirPrint to any printer connected to a Windows computer, including...

Read More

I'm sure you are familiar with the traditional way to kill or end a process in Windows using Task Manager.  This method is effective but not nearly as fun as killing a process in Command Prompt.  Additionally, killing processes in Command Prompt provides much more control and the ability to end multiple processes at once.

Read More