如何使用批次檔調整音量

如何使用批次檔調整音量

我想知道如何用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您可以使用(或您明顯使用的任何名稱)從批次檔中呼叫它。

相關內容