🖥️ Batch (CMD)
Get Video Controllers Report (Batch)
Uses wmic to list Video Controllers (Win32_VideoController) straight from the command line.
GetVideoControllerReport.bat
@echo off
:: ============================================================
:: GetVideoControllerReport.bat
::
:: Reports Video Controllers via WMI (Win32_VideoController).
:: ============================================================
wmic path Win32_VideoController get Name,AdapterRAM,DriverVersion,CurrentRefreshRate /format:table
pause