mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 01:55:20 +00:00
12 lines
361 B
Plaintext
12 lines
361 B
Plaintext
table_name("wmi_bios_info")
|
|
description("Lists important information from the system bios.")
|
|
schema([
|
|
Column("name", TEXT, "Name of the Bios setting"),
|
|
Column("value", TEXT, "Value of the Bios setting"),
|
|
])
|
|
implementation("wmi_bios_info@genBiosInfo")
|
|
examples([
|
|
"select * from wmi_bios_info",
|
|
"select * from wmi_bios_info where name = 'AMTControl'",
|
|
])
|