🖥️ Batch (CMD)
Get Sound Devices Report (Batch)
Uses wmic to list Sound Devices (Win32_SoundDevice) straight from the command line.
GetSoundDeviceReport.bat
@echo off
:: ============================================================
:: GetSoundDeviceReport.bat
::
:: Reports Sound Devices via WMI (Win32_SoundDevice).
:: ============================================================
wmic path Win32_SoundDevice get Name,Manufacturer,Status /format:table
pause