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.
windows_optional_features
Lists names and installation states of windows features. Maps to Win32_OptionalFeature WMI class.
Column | Type | Description |
---|---|---|
caption | text | Caption of feature in settings UI |
name | text | Name of the feature |
state | integer | Installation state value. 1 == Enabled, 2 == Disabled, 3 == Absent |
statename | text | Installation state name. 'Enabled','Disabled','Absent' |
SMBv1 is deprecated and has known, unpatched vulnerablities; it should be disabled whenever possible. This query lists enabled SMBv1 services (client and/or server).
SELECT name,caption,statename FROM windows_optional_features WHERE name LIKE 'SMB1Protocol%' AND state = 1;