🖥️ Batch (CMD)

Get Sound Devices Report (Batch)

Uses wmic to list Sound Devices (Win32_SoundDevice) straight from the command line.

By WindowsScripting.com · 301 B
GetSoundDeviceReport.bat
@echo off
:: ============================================================
:: GetSoundDeviceReport.bat
::
:: Reports Sound Devices via WMI (Win32_SoundDevice).
:: ============================================================

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

pause