Determine which w3wp.exe process belongs to which App Pool in Windows 7 / IIS7.5?

Viewed 19142
4 Answers

There are two ways in which I prefer "task manager" version.

By task manager,

Add "command line" column as shown in the images.

enter image description here enter image description here

By PowerShell,

cd C:\Windows\System32\inetsrv\
.\appcmd list wp

enter image description here

Related