🖥️ Batch (CMD)

Get Motherboard Info Report (Batch)

Uses wmic to list Motherboard Info (Win32_BaseBoard) straight from the command line.

By WindowsScripting.com · 307 B
GetBaseBoardReport.bat
@echo off
:: ============================================================
:: GetBaseBoardReport.bat
::
:: Reports Motherboard Info via WMI (Win32_BaseBoard).
:: ============================================================

wmic path Win32_BaseBoard get Manufacturer,Product,SerialNumber /format:table

pause