Solutions
Device management
Remotely manage, and protect laptops and mobile devices.
Orchestration
Automate tasks across devices, from app installs to scripts.
Software management
Inventory, patch, and manage installed software.
Extend Fleet
Integrate your favorite tools with Fleet.
Customers
Stripe + Fleet
Stripe consolidates multiple tools with Fleet.
Foursquare + Fleet
Foursquare quickly migrates to Fleet for device management.
What people are saying
Stories from the Fleet community.
More
Lists all laptops with under-performing or failing batteries.
To learn more about queries, check this guide.
SELECT * FROM battery WHERE health != 'Good' AND condition NOT IN ('', 'Normal');
h=$(system_profiler SPPowerDataType | awk -F": " '/Battery Health/{print $2; exit}'); c=$(system_profiler SPPowerDataType | awk -F": " '/Condition:/{print $2; exit}'); if [[ "$h" != "Good" && -n "$c" && "$c" != "Normal" ]]; then echo "Battery Health,Condition"; echo "$h,$c"; fi
PowerShell commands are currently work in progress, contributions welcome.
Bash commands for macOS are currently work in progress, contributions welcome.