查找已打开的应用程序

时间:2013-10-12 15:55:16

标签: python windows cmd taskmanager

我正在尝试获取Windows中打开的应用程序列表,但最终使用

获取进程列表
tasklist

我想获取打开的应用程序列表(不是所有进程)及其进程ID。

例如:如果文件复制正在进行,那么我想知道其进程ID,同样如果在Chrome中下载某些内容,那么我想知道该下载窗口的进程ID。

我在Python中这样做,因此解决方案可以是与Python或命令提示符相关的任何内容。

1 个答案:

答案 0 :(得分:1)

如果您想要流程,请参阅此post @Nick Perkins和@ hb2pencil提供了一个非常好的解决方案。

要获取所有已打开的应用程序标题,您可以使用下面的代码我也在我的一个驱动程序中使用它,它来自site

还有另一篇帖子有类似的问题here,而@nymk给出了解决方案。

import ctypes

EnumWindows = ctypes.windll.user32.EnumWindows
EnumWindowsProc = ctypes.WINFUNCTYPE(ctypes.c_bool, ctypes.POINTER(ctypes.c_int),     ctypes.POINTER(ctypes.c_int))
GetWindowText = ctypes.windll.user32.GetWindowTextW
GetWindowTextLength = ctypes.windll.user32.GetWindowTextLengthW
IsWindowVisible = ctypes.windll.user32.IsWindowVisible

def foreach_window(hwnd, lParam):

    titles = []

    if IsWindowVisible(hwnd):
        length = GetWindowTextLength(hwnd)
        buff = ctypes.create_unicode_buffer(length + 1)
        GetWindowText(hwnd, buff, length + 1)
        titles.append(buff.value)
        print buff.value

    return titles


def main():

    EnumWindows(EnumWindowsProc(foreach_window), 0)

   #end of main
if __name__ == "__main__":
    main()