win7系统设置了自动开机,自动播放音乐,然后用VBS脚本调节音量

2024-11-28 12:31:54
推荐回答(1个)
回答(1):

不需要你那么麻烦,用以下命令实现音量减(用循环可以实现一直减):
Set WshShell = CreateObject("WScript.Shell")
WshShell.SendKeys(chr(&hAE))
音量增(用循环可以实现一直增):
Set WshShell = CreateObject("WScript.Shell")
WshShell.SendKeys(chr(&hAF))

本机测试通过,有问题追问哈。