AutoHotkey:列出所有打开的窗口

时间:2019-05-09 16:52:25

标签: autohotkey

Promise可以获取所有未隐藏窗口的列表。它显示的方式远远超过用户在Windows任务栏上看到的内容。

如何将窗口数限制为任务栏上显示的窗口数。类似于任务管理器中的简单列表。 (较少的详细信息模式)

1 个答案:

答案 0 :(得分:0)

这是一种简单的方法,我不确定它的可靠性。
它通过尝试最小化窗口来工作,如果将窗口最小化,则意味着它在任务栏上可用。
您可以以任何所需的形式获取找到/活动窗口的列表,这里我使用数组。

getWindows:

activeWindowsId := []
activeWindowsExe := []
newlist := ""

WinGet, List, List  ;get the list of all windows

Sendinput, #m  ;mimimize all windows by using the windows shortcut win+m
sleep, 200

;Loop % List  ;or use this loop to minimze the windows
;{
;     WinMinimize, % "ahk_id " List%A_Index%
;}

Loop % List
{
    WinGet, theExe, ProcessName, % "ahk_id " List%A_Index%  ;get the name of the exe
    WinGet, windowState, MinMax, % "ahk_id " List%A_Index%  ;get the state of the window, -1 is minimized, 1 is maximized, 0 is neither

    if (windowState == -1)  ;if the window is minimized
    {
        activeWindowsId.push(List%A_Index%) ;add the window id (hwnd) to this array
        activeWindowsExe.push(theExe)  ;add the window exe to this array
        WinRestore, % "ahk_id " List%A_Index%  ;restore the window
    }
}

;read the found active windows list from the array to a string and show it with a msgbox
For index, exe in activeWindowsExe
{
    newList .= exe "`n"
}

msgbox, % newList

return