在Windows 7中映射Win-q以退出?


1

我想映射Win+ q退出。

如何在Windows 7中执行此操作?我可以在Autohotkey中执行此操作吗?怎么样?

Answers:


3

假设您只想退出当前程序,此AutoHotKey脚本应该可以解决这个问题:

;Activate on Windows key + q
#q::

;Simulate Alt + F4 being pressed
Send !{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.