@echo off
:: ============================================================
:: GetComputerSystemProductReport.bat
::
:: Reports Computer System Product Info via WMI (Win32_ComputerSystemProduct).
:: ============================================================

wmic path Win32_ComputerSystemProduct get Name,Vendor,Version,IdentifyingNumber /format:table

pause