DeviceTvmHardwareFirmware
适用于:
- Microsoft Defender XDR
重要
某些信息与预发布的产品有关,在商业发布之前可能有重大修改。 Microsoft 对此处所提供的信息不作任何明示或默示的保证。
DeviceTvmHardwareFirmware
高级搜寻架构中的表包含Microsoft Defender 漏洞管理检查的设备的硬件和固件信息。 这些信息包括系统型号、处理器和 BIOS 等。
有关高级搜寻架构中其他表的信息,请参阅高级搜寻参考。
列名称 | 数据类型 | 说明 |
---|---|---|
DeviceId |
string |
服务中设备的唯一标识符 |
DeviceName |
string |
设备的 FQDN) (完全限定的域名 |
ComponentType |
string |
硬件或固件组件的类型 |
Manufacturer |
string |
硬件或固件组件的制造商 |
ComponentName |
string |
硬件或固件组件的名称 |
ComponentFamily |
string |
组件系列或类,一组组件,这些组件具有制造商确定的类似功能或特征 |
ComponentVersion |
string |
组件版本 (例如 BIOS 版本) |
AdditionalFields |
dynamic |
有关 JSON 数组格式的组件的其他信息 |
可以尝试以下示例查询,以使用表中可用的 DeviceTvmHardwareFirmware
信息:
// 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
相关主题
提示
想要了解更多信息? Engage技术社区中的 Microsoft 安全社区:Microsoft Defender XDR技术社区。