@echo off
:: ============================================================
:: GetSoundDeviceReport.bat
::
:: Reports Sound Devices via WMI (Win32_SoundDevice).
:: ============================================================

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

pause