Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

I've recently upgraded my development machine from Windows XP to Windows 7. How can I tell which w3wp.exe process belongs to which App Pool on a desktop running Windows 7?

  • On a server running IIS6, you can run c:\windows\system32\cscript iisapp.vbs

  • On a Windows 2008 Server running IIS7 you can run appcmd list wp

But what about on my desktop?

like image 413
wweicker Avatar asked Nov 25 '09 00:11

wweicker


People also ask

How do I check w3wp process?

Open IIS manager and on the left side click on the name of your computer. You will then see a similar list of icons on the right as shown in the screenshot below. Double click on “Worker Processes” and you can get a list of which processes are currently running.

What is this file w3wp exe?

An Internet Information Services (IIS) worker process is a windows process (w3wp.exe) which runs Web applications, and is responsible for handling requests sent to a Web Server for a specific application pool. It is the worker process for IIS.

Which script can check process ID and application name in IIS?

IISApp. vbs lists all the applications, their PID and their App Pool name. The script is already placed in systemroot\system32 on Windows Server 2003 so simply go to your Command Prompt and type in iisapp. vbs (the .


1 Answers

If you open IIS Manager, go to the root node in the tree on the left that represents your computer (should be labeled as your computer name).

In the Features View to the right, you'll see a section called IIS. Under that you'll see Worker Processes. Select that and it should show you all running worker processes and some basic info, including ProcessId.

You can correlate that ProcessId to the matching process in the Processes tab in Task Manager (showing processes from all users, and including the ProcessId column in the results).

like image 165
moribvndvs Avatar answered Sep 23 '22 18:09

moribvndvs