("/>

关于Visual Studio 2008:IIS7的工作进程是什么?

关于Visual Studio 2008:IIS7的工作进程是什么?

What is the worker process for IIS7?

我正在尝试在Visual Studio 2008中进行"附加到进程"以进行调试,但是我无法确定要附加到哪个进程。帮助。


实际上它仍然是w3wp.exe-您需要选中"在所有会话中显示进程"选项才能使其显示。

(也让我有一段时间了。)


不是w3wp.exe吗?


如果您要运行多个进程,那么这是一篇有用的文章,用于标识w3wp进程。

For 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

推荐阅读