使用Dell Latitude点棒按钮更改音量


0

我有一个dell Latitude带点棒和按钮,我从来没用过。即使通过功能键,键盘也没有音量控制。我想要做的是分别将三个点按钮按钮映射到音量 - 向下/静音/向上。戴尔触摸板控制面板确实为我提供了自定义这些按钮的选项,但它有点受限。这些是我的选择: 在此输入图像描述

如您所见,有一个Run选项,我可以使用它来选择要打开的文件,打开快捷方式或运行exe / bat文件。所以我的第一个问题是使用它来运行一个降低/静音/提高音量的批处理命令。如何使用批处理文件实现此目的?或者,如何在没有批处理文件选项的情况下执行此操作?

Answers:


0

搜索一下,我在几个地方找到了这个脚本(所以我不知道应该归功于谁)

用于切换音量控制静音状态的脚本:

set WshShell=createobject("wscript.shell")
WScript.Sleep 1000
WshShell.run "sndvol32"
WshShell.AppActivate "Volume Control"
WScript.Sleep 1000
WshShell.SendKeys("{TAB}{TAB}")
WScript.Sleep 1000
WshShell.SendKeys(" ")
WScript.Sleep 1000
WshShell.AppActivate "Volume Control"
WshShell.sendkeys "%{f4}"
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.