Wenfang Du Asked: 2021-08-28 01:04:05 +0800 CST2021-08-28 01:04:05 +0800 CST 2021-08-28 01:04:05 +0800 CST 如何编写使用快捷方式关闭 PowerShell 的 AHK 脚本? 772 我知道Alt+Space C可以关闭 PowerShell,但是Alt+Space已经被我使用了,我想将 + 绑定Alt到F4+ Alt,Space C如何在 AHK 中实现? keyboard-shortcuts powershell 2 个回答 Voted user3419297 2021-08-28T06:24:06+08:002021-08-28T06:24:06+08:00 尝试 !F4:: ; "!" means the Alt key If WinActive("ahk_exe powershell.exe") or WinActive("ahk_exe cmd.exe") { KeyWait, Alt ; wait for Alt to be released ControlSend,, exit{Enter}, A ; "A" means the active window } else Send, !{F4} return https://www.autohotkey.com/docs/commands/ControlSend.htm Best Answer Wenfang Du 2021-08-30T01:08:55+08:002021-08-30T01:08:55+08:00 以下脚本允许使用Alt+F4或Ctrl+D关闭 PowerShell: #IfWinActive ahk_exe powershell.exe !F4:: ^d::WinClose #IfWinActive
尝试
https://www.autohotkey.com/docs/commands/ControlSend.htm
以下脚本允许使用Alt+F4或Ctrl+D关闭 PowerShell: