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
Fleet uses osquery tables to query operating system, hardware, and software data. Each table provides specific data for analysis and filtering.
managed_policies
The managed configuration policies from AD, MDM, MCX, etc.
Column | Type | Description |
---|---|---|
domain | text | System or manager-chosen domain key. Equivalent to a configuration profile's PayloadType |
manual | integer | 1 if policy was loaded manually, otherwise 0 |
name | text | Policy key name |
username | text | Policy only applies to the listed user. Blank if global. |
uuid | text | Optional UUID assigned to policy set |
value | text | Policy value |
Check if critical software update installation is enabled via a profile (1 = enabled)
SELECT name, value FROM managed_policies WHERE domain='com.apple.SoftwareUpdate' AND name='CriticalUpdateInstall' LIMIT 1;