用来强制终止指定窗口对应的进程。通过 AHK 调用 Windows API,可以实现快速关闭窗口及其关联的程序。由于它直接终止进程,可能会导致数据丢失或未保存的工作丢失,因此需要谨慎使用。
killwindow(WinExist("ahk_class HH Parent")) ; 反应有点慢 killwindow(hwnd){ if !DllCall("GetWindowThreadProcessId", "ptr", hwnd, "uint*", pid, "uint") throw Exception(A_LastError) if !hProcess := DllCall("OpenProcess", "uint", 0x1F0FFF, "int", 0, "uint", pid, "ptr") throw Exception(A_LastError) if !DllCall("TerminateProcess", "ptr", hProcess, "uint", 0) throw Exception(A_LastError) DllCall("CloseHandle", "ptr", hProcess) }
声明:站内资源为整理优化好的代码上传分享与学习研究,如果是开源代码基本都会标明出处,方便大家扩展学习路径。请不要恶意搬运,破坏站长辛苦整理维护的劳动成果。本站为爱好者分享站点,所有内容不作为商业行为。如若本站上传内容侵犯了原著者的合法权益,请联系我们进行删除下架。
评论(0)