嗯,在Win11中更糟糕的是,现在需要几次点击来改变音频播放设备(在Win10中只有两三次点击)。
是时候写剧本了。
powershell中的方法是:
devices
发布于 2022-02-10 07:58:24
我不确定它是否能在Windows 11上工作,但值得一试。
powershell中有一个模块可用于管理声音设备和音量级别。尝试来自PSGallery https://www.powershellgallery.com/packages/AudioDeviceCmdlets/3.0.0.4的PSGallery模块
然后可以使用Get-AudioDevice -List查看可用的音频设备,使用Set-AudioDevice <AudioDevice> -index 1将所需的"AudioDevice“设置为默认输入/输出。
更多关于这个模块的信息- https://github.com/frgnca/AudioDeviceCmdlets
https://stackoverflow.com/questions/71060460
复制相似问题