How to get list of running applications using PowerShell or VBScript

前端 未结 5 722
鱼传尺愫
鱼传尺愫 2020-12-17 10:34

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

5条回答
  •  臣服心动
    2020-12-17 11:25

    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 /fi "imagenaem eq POWERPNT.EXE" for example can be used to filter just application running under POWERPNT.EXE process.

提交回复
热议问题