PowerShell - Informations sur la batterie
La commande suivante vous permet d'obtenir toutes les informations sur la batterie (statut, type, pourcentage restant...)
Get-WmiObject -class Win32_Battery -computername "LocalHost"
Pour avoir seulement le pourcentage estimé vous pouvez exécuter cette commande :
(Get-WmiObject -class Win32_Battery -computername "LocalHost").EstimatedChargeRemaining
Ou sous forme de script :
$batteryInfo = Get-WmiObject -class Win32_Battery -computername "LocalHost"
$batteryInfo.EstimatedChargeRemaining
Commentaires
Enregistrer un commentaire