Files
Intune/intune/Externally Sourced Remediations/ToastNotifications/Get-BatteryHealthWarning/Detect_BatteryHealthWarning.ps1
2025-05-19 15:19:36 -04:00

8 lines
197 B
PowerShell

$batteryStatus = Get-WmiObject -Query "Select * from Win32_Battery"
if ($batteryStatus.EstimatedChargeRemaining -lt 25) {
Write-Output "Battery health warning"
exit 1
} else {
exit 0
}