🖥️ Batch (CMD)

Get Keyboard Info Report (Batch)

Uses wmic to list Keyboard Info (Win32_Keyboard) straight from the command line.

By WindowsScripting.com · 307 B
GetKeyboardReport.bat
@echo off
:: ============================================================
:: GetKeyboardReport.bat
::
:: Reports Keyboard Info via WMI (Win32_Keyboard).
:: ============================================================

wmic path Win32_Keyboard get Description,Layout,NumberOfFunctionKeys /format:table

pause