Fastest Method
Check your Windows laptop battery in your browser
No command prompt, no settings menu. Open our free Battery Test tool in Chrome or Edge on your Windows laptop and it instantly shows your battery level, charging status, estimated time to full charge, and estimated time until empty โ live from Windows via the browser.
Open Battery Test
The browser tool reads battery data via the Web Battery Status API and works in Chrome and Edge on Windows. It shows real-time level and charging data. For a detailed breakdown of battery capacity degradation over time โ the kind of data you need to decide whether to replace a battery โ use the powercfg battery report below.
The Windows Battery Report โ The Most Detailed Method
Windows includes a built-in command that generates a full HTML battery report. It shows your battery's design capacity, current full charge capacity, charge history, usage history, and battery life estimates โ all in one place.
Open Command Prompt as Administrator
Press Windows + S, type cmd, right-click Command Prompt, and select Run as administrator. Or press Windows + X and choose Terminal (Admin) on Windows 11.
Run the Battery Report Command
Type the following command and press Enter:
powercfg /batteryreport /output "C:\battery-report.html"
Open the Report
The report is saved as an HTML file at C:\battery-report.html. Open File Explorer, navigate to the C: drive, and double-click battery-report.html to open it in your browser.
Check Battery Status in Task Manager
Task Manager shows live battery status without any commands. This is the fastest way to see whether your laptop is charging and at what rate.
- Press Ctrl + Shift + Esc to open Task Manager.
- Click the Performance tab.
- In the left sidebar, click Battery (only visible on laptops).
- You'll see: Charge percentage, Capacity remaining (mWh), Charging rate (mW), and Time remaining.
The charging rate in mW is particularly useful โ it tells you whether your charger is actually delivering its rated wattage. A 65W charger delivering only 5W usually means a damaged cable, dirty USB-C port, or a charger that is not being recognised.
Battery Settings & PowerShell Commands
Windows 11 added battery health information directly in Settings. On Windows 10, PowerShell can pull the same data.
Windows 11 โ Settings Battery Page
Go to Settings โ System โ Power & battery โ Battery. This page shows the current battery level, whether the battery saver threshold is met, and battery usage over the last 24 hours or 7 days broken down by app.
PowerShell โ Read Battery Info Directly
Open PowerShell (search "powershell" in Start) and run these commands:
Get battery status โ level, charging, estimated runtime
Get-WmiObject -Class Win32_Battery | Select-Object EstimatedChargeRemaining, BatteryStatus, EstimatedRunTime, DesignCapacity, FullChargeCapacity
Battery health as percentage (FullChargeCapacity / DesignCapacity)
$b = Get-WmiObject Win32_Battery; [math]::Round($b.FullChargeCapacity / $b.DesignCapacity * 100, 1)
Note: FullChargeCapacity is the current maximum charge; DesignCapacity is the original factory capacity. Dividing them gives a battery health percentage.
How to Read the Windows Battery Report
The battery report generated by powercfg is detailed. Here is what each key section means:
| Section | What it tells you |
|---|---|
| Installed batteries | Battery manufacturer, serial number, chemistry (Li-ion), design capacity (mWh), and full charge capacity (mWh). The gap between design and full charge capacity is your health metric. |
| Design Capacity | The factory-rated maximum energy the battery can hold when new (in mWh). |
| Full Charge Capacity | How much energy the battery holds today at 100%. Divide by Design Capacity and multiply by 100 to get battery health percentage. |
| Recent usage | A log of the last 3 days of battery activity โ when the laptop was on AC power, discharging, or suspended. |
| Battery capacity history | A historical table showing how Full Charge Capacity has changed over time. This is the most valuable section for tracking long-term degradation. |
| Battery life estimates | Estimated battery life based on your observed usage patterns, at full charge and at the current capacity. |
Check your live battery status without the command prompt
Our Battery Test tool shows your current battery percentage, charging state, and estimated time remaining โ live in Chrome or Edge on Windows. No admin access needed.
Frequently Asked Questions
How do I check laptop battery health on Windows 11 without Command Prompt?
Open Task Manager (Ctrl+Shift+Esc) โ Performance โ Battery. This shows real-time charging rate, remaining capacity, and estimated time. For a live browser reading, our Battery Test tool works in Chrome and Edge with no admin access required.
What is a healthy battery capacity percentage on Windows?
Calculate it from the battery report: Full Charge Capacity รท Design Capacity ร 100. Above 80% is considered healthy for a laptop battery. Between 60โ80% the battery still works but will need more frequent charging. Below 60% is a strong indicator that replacement is worth considering for daily-use laptops.
Why does Windows show a different battery time than expected?
Windows estimates remaining battery time based on current power draw, which changes constantly. If you start a video render or gaming session right after checking, the estimate will drop quickly. The estimate in Task Manager is more accurate than the one in the system tray notification, as it reflects real-time mW consumption.
Does Windows have a built-in battery health percentage indicator?
Not as a simple percentage in Settings โ you need to either run the powercfg /batteryreport command or use the PowerShell formula (FullChargeCapacity / DesignCapacity ร 100) to calculate it. Windows 11 does show a battery usage trend in Settings โ System โ Power & battery, but not a numeric health percentage.