Reputation: 183
I am using the below command to find w3wp.exe ID, which I have to attach in debugging, but it gives all W3wp.exe list
C:\Windows\System32\inetsrv>appcmd list wp.
I want to find only Specific 'Application Pool' w3wp.exe ID. How can I achieve this?
Upvotes: 0
Views: 2224
Reputation: 1181
You can use below command to find with w3wp.exe ID with apppoolName
APPCMD list wps /apppool.name:AppPoolName
There are more commands here
I hope this helps
Upvotes: 1