Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: How Long Has My Computer Been Running?

$
0
0

Summary: Learn a one-liner Windows PowerShell command to see how long a computer has run.

Hey, Scripting Guy! Question How can I use Windows PowerShell to find out how long my computer has been running
          since last boot up without writing a script?

Hey, Scripting Guy! Answer Use the Win32_OperatingSystem WMI class and the LastBootupTime property,
          and then subtract the value of the current date/time that comes from Get-Date:

(Get-Date) - (Get-CimInstance Win32_operatingSystem).lastbootuptime


Viewing all articles
Browse latest Browse all 3333

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>