🖥️ Batch (CMD)
Get Computer System Product Info Report (Batch)
Uses wmic to list Computer System Product Info (Win32_ComputerSystemProduct) straight from the command line.
GetComputerSystemProductReport.bat
@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