🖥️ Batch (CMD)

Get USB Controllers Report (Batch)

Uses wmic to list USB Controllers (Win32_USBController) straight from the command line.

By WindowsScripting.com · 309 B
GetUSBControllerReport.bat
@echo off
:: ============================================================
:: GetUSBControllerReport.bat
::
:: Reports USB Controllers via WMI (Win32_USBController).
:: ============================================================

wmic path Win32_USBController get Name,Manufacturer,Status /format:table

pause