🖥️ Batch (CMD)
Get Motherboard Info Report (Batch)
Uses wmic to list Motherboard Info (Win32_BaseBoard) straight from the command line.
GetBaseBoardReport.bat
@echo off
:: ============================================================
:: GetBaseBoardReport.bat
::
:: Reports Motherboard Info via WMI (Win32_BaseBoard).
:: ============================================================
wmic path Win32_BaseBoard get Manufacturer,Product,SerialNumber /format:table
pause