What is the simplest way to find out how long a computer is turned on Windows?
12 Answers
- Run command line
- Type Systeminfo
Find "System Boot Time"
Days: 10 Hours: 10 Minutes: 10 Seconds: 10
For shorter result you can use:
systeminfo | find "Boot Time" 11 there is great command line tool from Microsoft uptime.exe:
good thing with this tool is it works really fast.
2Uptime [server] [/s ] [/a] [/d:mm/dd/yyyy | /p:n] [/heartbeat] [/? | /help]
server Name or IP address of remote server to process.
/s Display key system events and statistics.
/a Display application failure events (assumes /s).
/d: Only calculate for events after mm/dd/yyyy.
/p: Only calculate for events in the previous n days.
/heartbeat Turn on/off the system's heartbeat
/? Basic usage.
/help Additional usage information.
Open the command prompt and type:
net stats srv | find "Statistics"Example output:
>net stats srv | find "Statistics"
Server Statistics for \\4IFS-SANDER
Statistics since 22/07/2009 10:14:14Source (MS KB).
Edit: Actually this will tell you the date and time when the pc was up from, not the duration.
5On Windows 7 / Windows Server 2008 and above, this information is displayed in task manager under the "Performance tab".
This can be quicker then using the command line and works in cases where you might have WMI issues preventing you from running systeminfo.
If you need to find this remotely, you could also run
systeminfo /s SERVERNAME | find "Time:"
from the command line.
7Following command gives last reboot time for a remote system:
systeminfo /s server_name | find "System Boot Time" In windows 10, this is located in Task manager > Expand More Details Chevron > Performance > CPU > At the bottom, Up time.
If you have the Windows Server 2000 or 2003 resource kits try
srvinfo -ns [\\\server] | Findstr "Time"
Note: Srvinfo.exe will not run on a 64-bit versions of Windows, due to it being 16-bit.
Using SYSTEMINFO with PowerShell
For those who like using PowerShell, you can use the answer(s) above and wrap systeminfo in a PowerShell function to get a DateTime result for when the server last booted:
function Get-ComputerBootTime { param($ComputerName = (hostname)) $SystemInfo = & systeminfo /s $ComputerName | Select-String "System Boot Time") if($SystemInfo -match "[\d/]+,\s+\S+"){ return (Get-Date $matches[0]) }
}And then call the function, for example:
[PS]> $BootTime = Get-ComputerUptime -ComputerName MYSERVERTo get the Uptime for the server, you compare with the current time:
[PS]> $UpTime = (Get-Date) - $BootTimeThis is a TimeSpan, which includes properties such as TotalDays:
[PS]> $UpTime.TotalDays
14.1827364 1 Yet another way:
C:\>wmic path Win32_OperatingSystem get LastBootUpTime
LastBootUpTime
20200908203723.500000+120 Anyone wanting the unix time (seconds since the epoch) that are using cygwin can try this:
date +%s -d "$(wmic path Win32_OperatingSystem get LastBootUpTime | grep -E '^[0-9]' | awk '{print substr($1,1,4) "-" substr($1,5,2) "-" substr($1,7,2) " " substr($1,9,2) ":" substr($1,11,2) ":" substr($1,13,2);}')" Sometimes the uptime is dificult and user is not logged out and the two prety much coincide so I use this command to display the LOGON TIME
query USERor shorter even:
quserwhich prints something like:
C:\Users\eflorinescu>query USER USERNAME SESSIONNAME ID STATE IDLE TIME LOGON TIME
>eflorinescu console 2 Active 2+23:44 5/7/2018 8:25 AMalso even better using PowerShell
Get-ComputerInfo | select-object oslastbootuptime 2 In PowerShell either of the following commands will work
Get-WmiObject win32_operatingsystem |% {$_.ConverttoDateTime($_.lastbootuptime)}
(Get-CimInstance -ClassName win32_operatingsystem).lastbootuptimeGet-CimInstance is both shorter and more future proof, because Get-WmiObject and wmic have been both deprecated
You can also run (Get-WmiObject win32_operatingsystem).lastbootuptime but the output is less readable because it's a raw time string