Question

Looking at what's running and nothing jumps out.

Thanks!

Was it helpful?

Solution

It should be w3wp.exe

EDIT: In line with Darren's comment, you should also check the "Show processes from all users" in Task Manager if that is where you are looking for the process.

OTHER TIPS

Just to add something here, process explorer comes in handy when trying to track down a process: http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx

Beats task manager hands down and can be substituted.

make sure you have show all processes checked (in vs)

Furthermore if you need to look at the .NET/unmanaged stack just donwload Process Explorer and look at your w3wp.exe processes to examine memory and other stats without having to do a remote/local debugging (just look at the .NET Tab on the properties of the process). It will show all the .NET performance counters for that particular process.

Awesome tool!

Using TaskManager should show you the process W3WP.exe is the IIS worker process, if you have multiple instances adding the Column "Command Line" will show you which Application Pool is being hosted on each of them in the -ap switch. Also, in the IIS Manager UI there is a "Worker Processes" feature that if you double click that you will see the list of processes, Memory and CPU they are consuming, and double clicking the instance will show you the list of executing requests on it, really useful when trying to figure out a "misbehaving" request.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top