Download the official SMBIOS 3.7 specification from the DMTF website (search for "DMTF SMBIOS 3.7").
Related search suggestions (may help find firmware notes, spec, and tooling updates): functions.RelatedSearchTerms("suggestions":["suggestion":"SMBIOS 3.7 specification PDF","score":0.9,"suggestion":"SMBIOS 3.7 changelog firmware vendors","score":0.8,"suggestion":"how to read SMBIOS tables Linux dmidecode support 3.7","score":0.7])
There is no modern "SMBIOS version 2.7 update" for your computer's hardware. SMBIOS 2.7 is a legacy technical standard for system information reporting that was released in 2011.
It is highly likely your request refers to Business Central 2025 release wave 2 (version 27), which was released in late 2025/early 2026. Review: Business Central 2025 Wave 2 (Version 27)
This update is a major architectural shift for Microsoft's ERP platform, focusing on moving away from legacy code and enhancing AI capabilities.
Architectural Overhaul: Version 27 is the first major release to be fully AL-based. The classic C/SIDE development environment has been deprecated, and the system is now strictly extension-based, which simplifies future upgrades. Performance & UI Improvements: Optimized screen usage on the web client. smbios version 27 update new
Improved analysis mode, allowing users to add fields from related tables directly for better data reporting.
Copilot Integration: Users can now consume prepaid Copilot Credits without manual AI billing setup, making AI-driven tasks like automated data entry and reporting more accessible.
Warehouse & Inventory Fixes: New features allow multiple users to post warehouse entries simultaneously and include package tracking in physical inventory orders.
Compliance: Includes updated 1099 forms for US tax data transmission to the IRS. Clarification on SMBIOS Version 2.7
If you specifically see "SMBIOS 2.7" in your system settings (like msinfo32), it is not a "new" update but a description of how your motherboard reports its specs. Update 27.0 for Business Central 2025 release wave 2 Download the official SMBIOS 3
sudo dmidecode -s system-manufacturer
sudo dmidecode | grep -i "SMBIOS"
Output example:
SMBIOS 2.6 present.
If you see 2.6 or lower, your system is eligible for the 2.7 update (provided the vendor offers it).
If using libvirt, edit the VM’s XML:
<sysinfo type="smbios">
<bios>
<entry name="vendor">Your Vendor</entry>
<entry name="version">2.7</entry>
</bios>
</sysinfo>
<os>
<smbios mode="sysinfo"/>
</os>
For VMware, set smbios.version = "2.7" in the .vmx file.
Yes—but as a floor, not a ceiling. The latest standard at the time of writing is SMBIOS 3.7 (which supports DDR5, PCIe 5.0, CXL, and large memory capacities up to 4 PB). sudo dmidecode -s system-manufacturer sudo dmidecode | grep
So why focus on 2.7?
Because thousands of enterprise desktops, thin clients, and industrial controllers cannot jump directly to 3.x due to hardware constraints (32-bit UEFI, legacy PCI bridges). For these systems, SMBIOS 2.7 is the final, most capable version they will ever receive.
Updating to 2.7 on such hardware is a terminal optimization—it extracts the last drop of modern compatibility from aging but still-functional infrastructure.
Cause: Older version of dmidecode (pre-3.0) does not fully support 2.7 structures.
Fix: Update dmidecode via sudo apt install dmidecode (Ubuntu) or sudo dnf update dmidecode (RHEL).
Run the same version check. You should see SMBIOS 2.7 reported.
The method varies by hardware and environment. Important: SMBIOS is embedded in the system firmware (BIOS/UEFI). You cannot update SMBIOS separately—only by updating the BIOS/UEFI to a version that includes SMBIOS 2.7.