There is a handy and free tool to check your system's uptime called "Uptime". (Clever, no?) It…
Tag: uptime
PowerShell – Get Boot Time of Computer
Show Date/Time Of Last Boot Get-WmiObject -class Win32_OperatingSystem | Select-Object __SERVER,@{label='LastBootUpTime';expression={$_.ConvertToDateTime($_.LastBootUpTime)}}