iTayb
iTayb

Reputation: 12753

How can I enumerate Applications?

I'd like to get information like window name, process, creation time and such under windows XP system. How can I do it? Is there a module that may give me that information?

Thanks.

Upvotes: 0

Views: 200

Answers (1)

André Caron
André Caron

Reputation: 45274

Take a look at the Python bindings for the Win32 API. For the rest, I've had better luck with the Win32 API's documentation than that of the Python bindings. For your process enumeration task, take a look at the documentation on Process Information (Windows).

Upvotes: 2

Related Questions