🖥️ Batch (CMD)

Get BIOS Info Report (Batch)

Uses wmic to list BIOS Info (Win32_BIOS) straight from the command line.

By WindowsScripting.com · 307 B
GetBIOSReport.bat
@echo off
:: ============================================================
:: GetBIOSReport.bat
::
:: Reports BIOS Info via WMI (Win32_BIOS).
:: ============================================================

wmic path Win32_BIOS get Manufacturer,SMBIOSBIOSVersion,SerialNumber,ReleaseDate /format:table

pause