Skip to content

Latest commit

 

History

History
73 lines (60 loc) · 3.29 KB

advanced-hunting-devicetvmhardwarefirmware-table.md

File metadata and controls

73 lines (60 loc) · 3.29 KB
title description search.appverid ms.service ms.subservice f1.keywords ms.author author ms.localizationpriority manager audience ms.collection ms.custom ms.topic ms.date
DeviceTvmHardwareFirmware table in the advanced hunting schema
Learn about the DeviceTvmHardwareFirmware table in the advanced hunting schema, which includes information on devices like processor, BIOS, and others, as checked in threat and vulnerability management in Microsoft Defender XDR.
met150
defender-xdr
adv-hunting
NOCSH
maccruz
schmurky
medium
dansimp
ITPro
m365-security
tier3
cx-ti
cx-ah
reference
12/29/2023

DeviceTvmHardwareFirmware

[!INCLUDE Microsoft Defender XDR rebranding]

Applies to:

  • Microsoft Defender XDR

Important

Some information relates to prereleased product which may be substantially modified before it's commercially released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

The DeviceTvmHardwareFirmware table in the advanced hunting schema contains hardware and firmware information of devices as checked by Microsoft Defender Vulnerability Management. The information includes the system model, processor, and BIOS, among others.

For information on other tables in the advanced hunting schema, see the advanced hunting reference.

Column name Data type Description
DeviceId string Unique identifier for the device in the service
DeviceName string Fully qualified domain name (FQDN) of the device
ComponentType string Type of hardware or firmware component
Manufacturer string Manufacturer of hardware or firmware component
ComponentName string Name of hardware or firmware component
ComponentFamily string Component family or class, a grouping of components that have similar features or characteristics as determined by the manufacturer
ComponentVersion string Component version (for example, BIOS version)
AdditionalFields dynamic Additional information about the components in JSON array format

You can try the following sample queries to use the information available in the DeviceTvmHardwareFirmware table:

// Count the number of Lenovo devices
DeviceTvmHardwareFirmware
| where ComponentType == "Hardware" and Manufacturer == "lenovo"
| summarize count()
// Find all devices with a specific BIOS version, replace ComponentVersion with what you are looking for
DeviceTvmHardwareFirmware
| where ComponentType == "Bios" and ComponentVersion contains "N2VET29W"
|project DeviceId, DeviceName

Related topics