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
from command line you are looking for:
tasklist /v the /v means verbose and will include list of "application running off each process
tasklist /v
/v
tasklist /v /fi "imagenaem eq POWERPNT.EXE" for example can be used to filter just application running under POWERPNT.EXE process.
tasklist /v /fi "imagenaem eq POWERPNT.EXE"