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.
bitlocker_key_protectors
Returns what BitLocker key protectors are setup on the system.
Column | Type | Description |
---|---|---|
drive_letter | text | The drive letter of the volume. |
key_protector_type | integer | An unsigned integer that specifies the type of key protector. See https://learn.microsoft.com/en-us/windows/win32/secprov/getkeyprotectors-win32-encryptablevolume#parameters for a list of possible values. |
Determine whether 'C:' encryption key is protected by TPM and PIN
SELECT 1 FROM bitlocker_key_protectors WHERE drive_letter = 'C:' AND key_protector_type = 4;
This table is not a core osquery table. It is included as part of Fleet's agent (fleetd).