我想知道如何使用 cmd 设置音量,但无法下载软件。我知道这是可能的,因为我有它,但删除了它。哎呀
答案1
将其保存为 .VBS 文件并用作模板来执行您想要的操作。您可以找到有关 SendKeys 方法的更多帮助这里。
set WshShell = CreateObject("WScript.Shell")
WshShell.Run "%SystemRoot%\System32\SndVol.exe"
WScript.Sleep 1000
WshShell.AppActivate "Volume Mixer"
WshShell.SendKeys "{PGUP}" ' Turn the volume up by 20. If muted it will unmute it.
WshShell.SendKeys "%{F4}" ' Alt+F4
cscript SetVol.vbs
您可以使用(或您使用的任何名称)从批处理文件中调用它。