AlphaOmega.SystemFirmware 1.1.8

There is a newer version of this package available.
See the version list below for details.
dotnet add package AlphaOmega.SystemFirmware --version 1.1.8
                    
NuGet\Install-Package AlphaOmega.SystemFirmware -Version 1.1.8
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AlphaOmega.SystemFirmware" Version="1.1.8" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AlphaOmega.SystemFirmware" Version="1.1.8" />
                    
Directory.Packages.props
<PackageReference Include="AlphaOmega.SystemFirmware" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AlphaOmega.SystemFirmware --version 1.1.8
                    
#r "nuget: AlphaOmega.SystemFirmware, 1.1.8"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package AlphaOmega.SystemFirmware@1.1.8
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AlphaOmega.SystemFirmware&version=1.1.8
                    
Install as a Cake Addin
#tool nuget:?package=AlphaOmega.SystemFirmware&version=1.1.8
                    
Install as a Cake Tool

SystemFirmware

Auto build NuGet NuGet Downloads

Managed .NET wrapper for the Win32 API functions:

Provides strongly typed access to SMBIOS firmware structures.

Features

  • Enumerate and parse SMBIOS tables via native Win32 APIs
  • Strongly typed model for supported SMBIOS structures
  • Save and load serialized firmware snapshots (.sfw)
  • Multi-targeted library (.NET Framework 3.5, .NET Standard 2.0, .NET 8)
  • Simple discovery helpers (generic retrieval per type)

Installation

NuGet:

Install-Package AlphaOmega.SystemFirmware

Or with .NET CLI:

 dotnet add package AlphaOmega.SystemFirmware

Quick Start

Read baseboard (Type 2) and optionally locate USB 3.0 port connectors (Type 8):

using System;
using System.Linq;
using AlphaOmega.Debug;
using AlphaOmega.Debug.Native;
using AlphaOmega.Debug.Smb;

class Program
{
    static void Main()
    {
        FirmwareT<FirmwareSmBios> fw = new FirmwareT<FirmwareSmBios>();
        FirmwareSmBios smbios = fw.GetData().Single();

        // Motherboard vendor and name
        Baseboard baseboard = smbios.GetType<Baseboard>();
        Console.WriteLine($"Motherboard Manufacturer: {baseboard.Manufacturer} Name: {baseboard.Product}");

        // Find USB 3.0 ports (example logic)
        foreach (TypeBase type in smbios.Types)
            switch (type.Header.Type)
            {
                case SmBios.Type.PortConnector:
                    PortConnector port = (PortConnector)type;
                    if (port.Type.Port == SmBios.Type8.PortType.USB && port.InternalReferenceDesignator.StartsWith("USB_3", StringComparison.OrdinalIgnoreCase))
                        Console.WriteLine("USB 3.0 port found");
                    break;
            }
    }
}

Enumerating All SMBIOS Structures

FirmwareT<FirmwareSmBios> fw = new FirmwareT<FirmwareSmBios>();
FirmwareSmBios smbios = fw.GetData().Single();

foreach (TypeBase type in smbios.Types)
{
    Console.WriteLine($"Type {type.Header.Type} Length: {type.Header.Length}");
    // Cast based on type.Header.Type if further detail is needed
}

Saving & Loading Snapshot

Persist a firmware snapshot to reuse later or for offline analysis.

// Save
FirmwareT<FirmwareSmBios> fw = new FirmwareT<FirmwareSmBios>();
byte[] data = fw.Save();
System.IO.File.WriteAllBytes(@"C:\Temp\Firmware\smbios.sfw", data);

// Load
try
{
    FirmwareT<FirmwareSmBios> loaded = new FirmwareT<FirmwareSmBios>(System.IO.File.ReadAllBytes(@"C:\Temp\Firmware\smbios.sfw"));
}
catch (ArgumentNullException)
{
    // Empty file
}
catch (ArgumentException)
{
    // Invalid signature or wrong firmware type (e.g. ACPI data passed)
}

Supported SMBIOS Types

Type ID Name Status
0 BIOS Information Supported
1 System Information Supported
2 Baseboard (Module) Information Supported
3 System Enclosure or Chassis Supported
4 Processor Information Supported
5 Memory Controller Information Obsolete
6 Memory Module Information Obsolete
7 Cache Information Supported
8 Port Connector Information Supported
9 System Slots Supported
10 On Board Devices Information Obsolete
11 OEM Strings Supported
12 System Configuration Options Supported
13 BIOS Language Information Supported
14 Group Associations Supported
15 System Event Log Not supported
16 Physical Memory Array Not supported
17 Memory Device Supported
18 32-Bit Memory Error Information Not supported
19 Memory Array Mapped Address Not supported
20 Memory Device Mapped Address Not supported
21 Built-in Pointing Device Not supported
22 Portable Battery Not supported
23 System Reset Not supported
24 Hardware Security Not supported
25 System Power Controls Not supported
26 Voltage Probe Supported
27 Cooling Device Supported
28 Temperature Probe Supported
29 Electrical Current Probe Supported
30 Out-of-Band Remote Access Not supported
31 Boot Integrity Services (BIS) Entry Point Not supported
32 System Boot Information Not supported
33 64-Bit Memory Error Information Not supported
34 Management Device Supported
35 Management Device Component Supported
36 Management Device Threshold Data Not supported
37 Memory Channel Not supported
38 IPMI Device Information Not supported
39 System Power Supply Supported
40 Additional Information Supported
41 Onboard Devices Extended Information Supported
42 Management Controller Host Interface Not supported
43 TPM Device Supported
44 Processor Additional Information Not supported

Notes & Limitations

  • Not supported types are skipped but header metadata remains accessible.
  • Some obsolete types are retained for backward compatibility; content may be limited.
  • Requires Windows for native firmware table enumeration.
  • Snapshot (.sfw) is a custom binary format (signature validated on load).
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net35 is compatible.  net40 was computed.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 3.5

    • No dependencies.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.9 263 11/11/2025
1.1.8 183 10/29/2025
1.1.7 174 10/28/2025
1.0.8418.34181 442 1/18/2023