如何获取所有正在运行的 ASP.NET 工作进程及其关联的应用程序池的列表?
我需要获取所有正在运行的 ASP.NET 工作进程及其关联的应用程序池和进程 ID 的列表。
有没有办法以实用的方式(C#)或 powershell 脚本来执行此操作?
I'm in a need to get a list of all the ASP.NET running worker process and its associated application pools and process ID.
Is there a way to do this pragmatically (C#) or a powershell script?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 IIS 6.0 中识别工作进程
cscript iisapp.vbs
工作进程 ID 和应用程序池名称。
从 IIS 7.0 开始,您需要运行 IIS 命令工具 (appcmd)。
appcmd list wp
如果您想将该列表保存到文本文件,只需附加 >>命令后的 myfile.txt。
现在,您可以在这里看到 iisapp .vbs源代码。
它使用 WMI 来获取所有信息。将其重写为 C# 看起来很简单。
无论如何,我找到此信息的完整文章可以在这里看到:识别工作进程 (w3wp.exe)
Identify Worker Process in IIS 6.0
cscript iisapp.vbs
Worker ProcessID and the Application Pool Name.
From IIS 7.0 you need you to run IIS Command Tool ( appcmd ) .
appcmd list wp
If you want to save that list to text file, just append >> myfile.txt after command.
Now, here you can see iisapp.vbs source code.
It uses WMI to get all the information. Looks simple to rewrite this to C#.
Anyway, complete article where i found this info can be seen here: Identifying Worker Process (w3wp.exe)