如何获取所有正在运行的 ASP.NET 工作进程及其关联的应用程序池的列表?

发布于 2024-10-29 09:30:07 字数 99 浏览 2 评论 0原文

我需要获取所有正在运行的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风柔一江水 2024-11-05 09:30:07

在 IIS 6.0 中识别工作进程

  • “开始”>运行> Cmd
  • 转到 Windows > System32
  • 运行 cscript iisapp.vbs
  • 你会得到正在运行的列表
    工作进程 ID 和应用程序池名称。

从 IIS 7.0 开始,您需要运行 IIS 命令工具 (appcmd)。

  • 开始>运行> Cmd
  • 转到 Windows >系统32> Inetsrv
  • Run appcmd list wp

如果您想将该列表保存到文本文件,只需附加 >>命令后的 myfile.txt。

现在,您可以在这里看到 iisapp .vbs源代码。

它使用 WMI 来获取所有信息。将其重写为 C# 看起来很简单。

无论如何,我找到此信息的完整文章可以在这里看到:识别工作进程 (w3wp.exe)

Identify Worker Process in IIS 6.0

  • Start > Run > Cmd
  • Go To Windows > System32
  • Run cscript iisapp.vbs
  • You will get the list of Running
    Worker ProcessID and the Application Pool Name.

From IIS 7.0 you need you to run IIS Command Tool ( appcmd ) .

  • Start > Run > Cmd
  • Go To Windows > System32 > Inetsrv
  • Run 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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文