vote up 3 vote down star
1

I can easily identify running processes by looping through the WMI Win32_Process elements. Is there a similar way to identify "applications" as in Task Manager? I assume that this is comparable to knowing whether the process has an open window. For example, when you exit Outlook, the OUTLOOK.EXE process keeps running. Task Manager no longer shows it as an application, but the process is still there. I want to be able to determine this difference from a script. I think I can handle examples in most any language.

flag

2 Answers

vote up 1 vote down check

It would appear that the way to do that is to enumerate all of the top-level windows.

http://support.microsoft.com/kb/183009

link|flag
Is there a WMI object for that? That would definitely answer the question. – Ken Paul Oct 12 at 23:50
No you would use the Windows API. See support.microsoft.com/kb/183009 – Robert Harvey Oct 12 at 23:57
vote up 0 vote down

This looks like it does what you are asking: Running Processes/Applications

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.