Query Details

BIOS Details

Query

// Use Case: Show all BIOS related informations.
BiosInfo
| project Manufacturer, ReleaseDateTime, SerialNumber, SmBiosVersion

Explanation

This query is designed to retrieve and display information related to the BIOS (Basic Input/Output System) of a computer. It accesses a data source named BiosInfo and selects specific columns to show. The output will include the following details for each entry:

  • Manufacturer: The company or entity that produced the BIOS.
  • ReleaseDateTime: The date and time when the BIOS was released.
  • SerialNumber: A unique identifier assigned to the BIOS.
  • SmBiosVersion: The version of the System Management BIOS (SMBIOS) standard that the BIOS adheres to.

In simple terms, this query lists key details about the BIOS from a dataset, focusing on who made it, when it was released, its unique serial number, and its SMBIOS version.

Details

Ugur Koc profile picture

Ugur Koc

Released: December 13, 2024

Tables

BiosInfo

Keywords

BiosInfoManufacturerReleaseDateTimeSerialNumberSmBiosVersion

Operators

project

Actions

GitHub