如何在 W7 中获取音量热键?

Mik*_*wis 7 audio windows-7

Windows 7 实现了新的 Win+X 热键。这些接管了 Sound Volume Hotkeys http://www.softarium.com/soundvolumehotkeys使用的热键,我曾经在 XP 中使用过。

我需要对音量进行软件控制,而通过托盘中的滑块更改音量是完全不切实际且缓慢的。

有没有其他人有一个解决方案可以让他们使用热键轻松提高/降低 W7 中的系统音量?

Wil*_*sum 4

我想说,如果您想使用该程序,最好的选择是给开发人员发送电子邮件并简单地告诉他们 - 我确信他们希望他们的应用程序与 Windows 7 一起使用,并且会更改热键或为用户提供分配的选项他们自己的。

\n\n

除此之外,我现在是Nircmd的忠实粉丝,您可以使用以下任何选项进行设置:

\n\n
Increase the system volume by 2000 units (out of 65535)     \nnircmd.exe changesysvolume 2000\n\nDecrease the system volume by 5000 units (out of 65535)\nnircmd.exe changesysvolume -5000\n\nSet the volume to the highest value\nNircmd.exe setsysvolume 65535\n\nMute the system volume  \nnircmd.exe mutesysvolume 1\n\nUnmute the system volume\nNircmd.exe mutesysvolume 0\n\nSwitch the system volume between the mute and normal state. \nnircmd.exe mutesysvolume 2 \n
Run Code Online (Sandbox Code Playgroud)\n\n

将它们设置为快捷方式,然后转到属性并分配快捷键。

\n\n

最后,可能有效的是禁用移动中心快捷键 -

\n\n

这可以通过组策略来完成,如果您愿意,我可以提供,但遵循Howtogeek 的非常好的指南要容易得多- (以及一个可以为您完成此操作的 .reg 文件)。

\n\n
Manual Registry Tweak\n\nOpen up regedit.exe through the start menu search box and then navigate to the following key, creating it if it doesn\xe2\x80\x99t exist:\n\nHKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\MobilityCenter\n\n\nNow create a new 32-bit DWORD entry in the right-hand pane called NoMobilityCenter and give it a value of 1.\n
Run Code Online (Sandbox Code Playgroud)\n

  • +1 Nirsoft 有大量很酷的东西,但 NirCmd 确实很出色。 (2认同)