vishal goyal
vishal goyal

Reputation: 183

How to Get Worker Process ID(W3wp.exe) of Specific Sharepoint Application Pool(Not List of All)

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

Answers (1)

Habib Adıbelli
Habib Adıbelli

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

enter image description here

enter image description here

Upvotes: 1

Related Questions