- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- AutoHotKey/プロセス管理/起動中のAHKスクリプトのプロセスを探す へ行く。
- 1 (2018-11-03 (土) 20:22:28)
起動中のAHKスクリプトのプロセスを探す
#sh(c){{
DetectHiddenWindows, ON
WinGet, id, list, ahk_class AutoHotkey
Loop, %id%
{
this_ID := id%A_Index%
WinGetTitle, title, ahk_id %this_ID%
script_path := RegExReplace(title, " - AutoHotkey v" A_AhkVersion )
; Skip myself
If InStr(script_path, A_ScriptFullPath)
continue
WinClose, %script_path% ahk_class AutoHotkey
}
#}}
}}