🖥️ Batch (CMD)
Get Processor Info Report (Batch)
Uses wmic to list Processor Info (Win32_Processor) straight from the command line.
GetProcessorReport.bat
@echo off
:: ============================================================
:: GetProcessorReport.bat
::
:: Reports Processor Info via WMI (Win32_Processor).
:: ============================================================
wmic path Win32_Processor get Name,NumberOfCores,NumberOfLogicalProcessors,MaxClockSpeed /format:table
pause