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
stahler's answer converted to PowerShell:
$word = new-object -com 'word.application'
$word.tasks | ? {$_.visible} | select name
$word.quit()