如何删除Win + K'连接到无线设备'的快捷方式?


0

在Windows 10中,有一个Win + K快捷方式可以启动“连接到无线显示和音频设备”侧边栏应用程序。我想删除此快捷方式,因为我喜欢使用Win + K作为使用我在多台计算机上使用的AutoHotKey脚本启动应用程序的快捷方式。

Answers:


1

只需覆盖AHK中的快捷方式:

#k::msgbox Hello

它优先于内置的Windows快捷方式。对我来说,上面的工作。 (我正在运行AHK,即作为管理员。)


这有效!根据 autohotkey.com/docs/KeyList.htm 'LWin'和'RWin'是左右窗口键。我错过了#键可以是Windows键。
Matt Casto
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.