You will have come to the correct place if you wish to know extra about other ways to test the final boot time of the Home windows machine.
Community directors use the final Home windows startup time as a benchmark for fixing day-to-day issues that will come up within the system.
Let’s begin by just a few totally different strategies to establish the final Home windows boot time.
powershell
There are just a few methods to make use of PowerShell to test the uptime or final boot time of your Home windows machine.
Get-CimInstance cmdlet
The Get-CimInstance cmdlet in PowerShell can be utilized to get the most recent system boot time.
The Get-CimInstance (WMI Class Cases) cmdlet retrieves system info from the category identify of the win32 working system and provides it to the second assertion by means of the pipeline operator. It obtains the Frequent Info Mannequin (CIM) situations of a category from a CIM server.
The second command chooses the CSName And final boot time properties of CIM and returns the final boot time of the Home windows machine.
First, open the PowerShell and run it as an administrator.
Simply kind the next command in PowerShell to see the final boot time.
Get-CimInstance -ClassName win32_operatingsystem | choose csname, lastbootuptime
Instance output:
PS C:Usersgeekflare> Get-CimInstance -ClassName win32_operatingsystem | choose csname, lastbootuptime
csname lastbootuptime
------ --------------
LAPTOP-9A5G7BR4 2/20/2022 1:26:40 PM
Under gcim
command shows the uptime of a Home windows system in a listing of days, hours, and minutes. As a substitute of the final boot time, it solely exhibits a system’s uptime for the reason that final boot.
(get-date) - (gcim Win32_OperatingSystem).LastBootUpTime
Right here, gcim
stands for Get – CimInstance.
Instance output:
PS C:Usersgeekflare> (get-date) - (gcim Win32_OperatingSystem).LastBootUpTime
Days : 7
Hours : 8
Minutes : 44
Seconds : 38
Milliseconds : 884
Ticks : 6362788845605
TotalDays : 7.36433894167245
TotalHours : 176.744134600139
TotalMinutes : 10604.6480760083
TotalSeconds : 636278.8845605
TotalMilliseconds : 636278884.5605
In case you are utilizing PowerShell 6 or later, you may simply get the Home windows uptime and final boot time with the next command:
Get-Uptime -Since
Use the next command to see all Get-CimInstance properties and strategies.
Get-CimInstance Win32_OperatingSystem | Get-Member
This command supplies details about all Get-CimInstance strategies and their properties.
Get-WmiObject
You may simply get your PC’s final boot time utilizing the PowerShell Get-WmiObject command as proven under.
(Get-WmiObject Win32_OperatingSystem).LastBootUpTime
Instance output:
PS C:Usersgeekflare> (Get-WmiObject Win32_OperatingSystem).LastBootUpTime
20220220132640.500000+330
You will note an output that will appear unusual at first, however is just not troublesome to learn and perceive. You may simply discover out the final boot time of your Home windows machine.
The knowledge under can be utilized to LastBootUpTime 20220220132640.500000+330
.
- Yr: 2022.
- Month: 02.
- Day: 20.
- O’clock: 13.
- Minutes: 26.
- seconds: 40.
- Milliseconds: 500000.
- GMT: +330 (5 and a half hours earlier than GMT).
Or you may also use one other Get-WmiObject command to get the final system boot time.
Get-WmiObject win32_operatingsystem | choose csname, @{LABEL='LastBootUpTime';EXPRESSION={$_.ConverttoDateTime($_.lastbootuptime)}}
The lastbootuptime
might be transformed to a big integer format, which is able to finally be displayed in a readable format.
Instance output:
PS C:Usersgeekflare> Get-WmiObject win32_operatingsystem | choose csname, @{LABEL='LastBootUpTime';EXPRESSION={$_.ConverttoDateTime($_.lastbootuptime)}}
csname LastBootUpTime
------ --------------
LAPTOP-9A5G7BR4 2/20/2022 1:26:40 PM
Community statistics workstation
The Web Statistics command shows system statistics corresponding to bytes of information acquired and complete uptime for the reason that final startup.
web statistics workstation | select-string "Statistics"
You too can use the next shortcut:
web stats work | select-string "Stat"
Instance output:
PS C:Usersgeekflare> web statistics workstation | select-string "Statistics"
Workstation Statistics for LAPTOP-9A5G7BR4
Statistics since 2/20/2022 1:28:32 PM
System info
The systeminfo
utility command can be utilized to acquire the latest pc boot time by loading and analyzing processor, Hotfix, and Hyper-V info.
systeminfo
This command will show the host identify, working system model, construct kind, configuration, BIOS model, boot time, software program set up date, and each element.
If you wish to see solely the particularly required information from all this information, it’s essential to cross the extra Choose -string utility to the systeminfo
command.
Simply kind the next command within the PowerShell terminal to see the most recent boot time.
systeminfo | Choose-String "OS model","System Boot Time"
right here the Choose-String
cmdlet searches enter strings and recordsdata for textual content patterns utilizing common expression matches.
The above command retrieves the latest reboot time of the native pc and prints the OS model of a system and the most recent boot time of the Home windows system on the terminal as proven under.
Instance output:
PS C:Usersgeekflare> systeminfo | Choose-String "OS model","System Boot Time"
OS Model: 10.0.22000 N/A Construct 22000
System Boot Time: 2/20/2022, 1:26:40 PM
BIOS Model: Insyde F.18, 3/15/2019
Command Immediate
You too can use the command line to test the uptime or final boot time of your Home windows system with some instructions and instruments corresponding to web stats
, wmic
And systeminfo
.
System info
The order systeminfo
shows normal details about the Home windows working system and its configuration. It shows the final time Home windows was booted. If you need uptime, it’s essential to manually decide how a lot time has handed for the reason that final boot.
Open a command immediate and sort the next command.
systeminfo | discover "System Boot Time"
Instance output:
C:Usersgeekflare>systeminfo | discover "System Boot Time"
System Boot Time: 2/20/2022, 1:26:40 PM
WMIC
The Home windows Administration Instrumentation Command-line (WMIC) command provides you a string illustration of the pc’s final boot time. The result’s formatted as a four-digit yr, with two digits for month, day, hour, minute, and second.
Open a command immediate and sort the next command.
wmic path Win32_OperatingSystem get LastBootUpTime
Instance output:
C:Usersgeekflare>wmic path Win32_OperatingSystem get LastBootUpTime
LastBootUpTime
20220220132640.500000+330
This output could be learn as 2022, month 2, day 20, hour 13 (or 1:00 PM), minute 26, and so forth.
Web statistics
The Web Statistics command shows system statistics corresponding to bytes of information acquired, bytes of information transferred, variety of connections made, and complete uptime for the reason that final startup.
Use the command under to see what providers are operating on the Home windows machine.
web stats
This command lists solely the out there operating providers within the system.
We are able to get statistics for the server or workstation utilizing the NET STATISTICS context with the next command.
web stats workstation
Right here I’ve supplied the workstation accountable for viewing statistics.
Instance output:
C:Usersgeekflare>web stats workstation
Workstation Statistics for LAPTOP-9A5G7BR4
Statistics since 2/20/2022 1:28:32 PM
Bytes acquired 66780
Server Message Blocks (SMBs) acquired 18
Bytes transmitted 63746
Server Message Blocks (SMBs) transmitted 0
Learn operations 0
Write operations 0
Uncooked reads denied 0
Uncooked writes denied 0
Community errors 0
Connections made 0
Reconnections made 0
Server disconnects 0
Classes began 0
Hung periods 0
Failed periods 0
Failed operations 0
Use depend 10
Failed use depend 0
The command accomplished efficiently.
This command can be utilized from a batch file and the output could be filtered utilizing the “discover” command. For instance, for those who simply need to discover the final system boot time, use the next command.
web statistics workstat
Instance output:
C:Usersgeekflare>web statistics workstation | discover "Statistics"
Workstation Statistics for LAPTOP-9A5G7BR4
Statistics since 2/20/2022 1:28:32 PM
And if you wish to discover the Home windows Server uptime, the command turns into the web statistics server
.
Process administration
That is the simplest option to test your system’s uptime. As a substitute of displaying the final boot time, the system’s uptime for the reason that final boot is displayed.
- To open the Process Supervisor, merely use the keyboard shortcut Ctrl + Shift + Esc.
- Navigate to the Efficiency tab.
- System uptime is displayed on the backside of the window.

Which means the system was rebooted earlier than 8 days, 8 hours and 29 minutes.
Conclusion
These are a number of the strategies to shortly get the most recent Home windows system boot time or uptime.
Every project has its personal benefits. You may select the best way that most accurately fits your wants.
I hope you discovered this text very useful in studying easy methods to discover out the final boot time of a Home windows system in numerous methods.
You might also be concerned with studying extra about the most effective Home windows server monitoring instruments.