Create a battery report which shows detailed status of a laptop battery.
Copy to Clipboard
powercfg /batteryreport https://www.laptopmag.com/articles/generate-battery-report-windows-10 Get some battery information from Powershell: Copy to Clipboard
(Get-WmiObject -Class BatteryStatus -Namespace ROOT\WMI) Interesting values: ChargeRate, Charging, Critical, DischargeRate, Discharging, PowerOnline, RemainingCapacity, Voltage Copy to Clipboard
(Get-WmiObject -Class BatteryFullChargedCapacity -Namespace ROOT\WMI) Interesting values: FullChargedCapacity Copy to Clipboard
(Get-WmiObject -Class BatteryStaticData -Namespace ROOT\WMI) Copy to Clipboard
(Get-WmiObject -Class BatteryCycleCount -Namespace ROOT\WMI) Show lots of info at once: Show code to get lots of info all at once (taken from here: https://pastebin.com/4LRUea9g ) |