如何编写使用快捷方式关闭 PowerShell 的 AHK 脚本?

How to write an AHK script that uses a shortcut to close PowerShell?

我知道 Alt+Space C 可以关闭PowerShell,但是 Alt+Space 已经为我所用,我想绑定 Alt+F4Alt+Space C,如何在AHK中实现?

你可以使用这个:

!F4::Send !{Space}C

或者,如果您想要特定于 PowerShell 的东西,那么您可以使用这个:

!F4::WinClose ahk_exe powershell.exe

或者这个:

!F4::WinKill ahk_exe powershell.exe

WinCloseWinKill的区别在于,例如,当在记事本中编辑文件而不保存时,WinKill会关闭它而不要求保存,WinClose 会问。

以下脚本允许使用 Alt+F4Ctrl+D 关闭 PowerShell:

#IfWinActive ahk_exe powershell.exe
  !F4::
  ^d::WinClose
#IfWinActive