🖥️ Batch (CMD)

Get Pointing Devices Report (Batch)

Uses wmic to list Pointing Devices (Win32_PointingDevice) straight from the command line.

By WindowsScripting.com · 322 B
GetPointingDeviceReport.bat
@echo off
:: ============================================================
:: GetPointingDeviceReport.bat
::
:: Reports Pointing Devices via WMI (Win32_PointingDevice).
:: ============================================================

wmic path Win32_PointingDevice get Name,Manufacturer,NumberOfButtons /format:table

pause