vote up 5 vote down star

I need to programmatically get a list of running applications as shown in the "Applications" tab inside the Windows Task Manager using PowerShell or VBScript.

All I could find so far is how to list processes using VBScript and WMI.

flag

4 Answers

vote up 4 vote down check

This should do the trick.

Set Word = CreateObject("Word.Application")
Set Tasks = Word.Tasks
For Each Task in Tasks
   If Task.Visible Then Wscript.Echo Task.Name
Next
Word.Quit

http://msdn.microsoft.com/en-us/library/bb212832.aspx

link|flag
Aargh.. vbscript!!! :) Nice answer though :) – Steven Murawski Oct 10 '08 at 19:43
vote up 5 vote down

This gets you close in PowerShell:

get-process | where-object {$_.mainwindowhandle -ne 0} | select-object name, mainwindowtitle

Or the shorter version:

gps | ? {$_.mainwindowhandle -ne 0} | select name, mainwindowtitle
link|flag
vote up 0 vote down

stahler's answer converted to PowerShell:

$word = new-object -com 'word.application'

$word.tasks | ? {$_.visible} | select name

$word.quit()

link|flag
Ah - make me look lazy! (guilty) – stahler Oct 14 '08 at 12:52
vote up 3 vote down

@Steven Murawski: I noticed that if I used mainwindowhandle I'd get some process that were running, of course, but not in the "Applications" tab. Like explorer and UltraMon, etc. You could condition off of mainwindowtitle instead, since those process I encountered didn't have window titles -- like so

gps | ? {$_.mainwindowtitle.length -ne 0} | select name, mainwindowtitle
link|flag

Your Answer

Get an OpenID
or

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