标题: [问题求助] PowerShell脚本如何获取任务管理器中的“应用程序”列表? [打印本页]
作者: find 时间: 2012-1-16 13:34 标题: PowerShell脚本如何获取任务管理器中的“应用程序”列表?
注意:不是进程列表,而是打开任务管理器之后,“应用程序”那个列表里面有哪些程序。
作者: find 时间: 2012-1-18 23:51
这个论坛有木有懂PowerShell滴啊?
作者: s700800900 时间: 2012-3-30 08:14
这个应该是API取出来的, powershell没有直接的命令能取到
作者: lxzzr 时间: 2012-4-8 18:26
回复 1# find - $NewObj = new-object -comobject "Word.Application"
-
- $NewObj.tasks | select-object name
-
- ........
复制代码
作者: weichenxiehou 时间: 2017-12-18 11:18
最近在学PS,尝试回答:
(ps).name
作者: ivor 时间: 2017-12-18 14:58
2012的老贴了,答案还是贴出来吧,终结此话题
Stack Overflow:https://stackoverflow.com/questi ... ershell-or-vbscript
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
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |