标题: [其他] 【已解决】求BAT或VBS获取声音默认设备名字。谢谢 [打印本页]
作者: yyz219 时间: 2023-6-25 12:11 标题: 【已解决】求BAT或VBS获取声音默认设备名字。谢谢
成功解决问题:- @echo off
- setlocal enabledelayedexpansion & set "regq=REG QUERY "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Render" /v "DeviceState" /s"
- for /f "delims=" %%i in ('%regq% ^| findstr .') do (set /a n+=1,m=n%%2
- if !m! equ 0 (for /f "tokens=1,4" %%a in ("!str!%%i") do if %%b equ 1 for /f "tokens=2*" %%i in ('reg query "%%a" /v "{b3f8fa53-0004-438e-9003-51a46e139bfc},6" /s ^|find /i "reg_sz"') do >#.txt echo,驱动:%%j)
- set "str=%%i" )
- #.txt
- del #.txt
复制代码
*****************************************************************************************************************************
【求】获取声音默认设备名字(bat vbs wcs ahk 第三方 都行)
作者: Batcher 时间: 2023-6-25 14:52
回复 1# yyz219
试试这个:
https://github.com/frgnca/AudioDeviceCmdlets
Features
- Get list of all audio devices
- Get default audio device (playback/recording)
- Get default communication audio device (playback/recording)
- Get volume and mute state of default audio device (playback/recording)
- Get volume and mute state of default communication audio device (playback/recording)
- Set default audio device (playback/recording)
- Set default communication audio device (playback/recording)
- Set volume and mute state of default audio device (playback/recording)
- Set volume and mute state of default communication audio device (playback/recording)
作者: yyz219 时间: 2023-6-25 16:01
回复 2# Batcher
无法访问此网站检查 github.com.cnpmjs.org 中是否有拼写错误。
如果拼写无误,请尝试运行 Windows 网络诊断。
DNS_PROBE_FINISHED_NXDOMAIN
作者: czjt1234 时间: 2023-6-25 17:03
下载不了,谁下载了的麻烦发一下
作者: jyswjjgdwtdtj 时间: 2023-6-25 18:12
回复 4# czjt1234
下载的了啊 就是还没编译
作者: 77七 时间: 2023-6-25 18:13
powershell安装命令- Install-Module -Name AudioDeviceCmdlets
复制代码
bat调用
- @echo off
- for /f "tokens=1* delims=: " %%a in ('powershell -c "Get-AudioDevice -PlaybackCommunication" ^|find "Name"') do (
- echo %%b
- )
- pause
复制代码
作者: yyz219 时间: 2023-6-25 19:46
powershell安装命令
bat调用
77七 发表于 2023-6-25 18:13
我的电脑不行 谢谢
作者: czjt1234 时间: 2023-6-25 20:43
难道要科学上网?
作者: czjt1234 时间: 2023-6-25 20:59
下载下来了,刚才因为我把批处理之家设置了IE兼容模式,导致https://github.com也是兼容模式
下载的AudioDeviceCmdlets-master.zip
解压后怎么操作?
6楼的安装命令 Install-Module -Name AudioDeviceCmdlets
是怎么回事?
作者: jyswjjgdwtdtj 时间: 2023-6-25 21:13
本帖最后由 jyswjjgdwtdtj 于 2023-6-25 21:16 编辑
回复 9# czjt1234
直接在管理员权限下的powershell运行
c#的那个是要编译过后吧
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |