(Conversion) Figuring out why my SVCHOST. EXE is at 100% CPU without complicated tools in Windows 7, figuring
(Reproduced from: http://www.hanselman.com/blog/FiguringOutWhyMySVCHOSTEXEIsAt100CPUWithoutComplicatedToolsInWindows7.aspx)
The SvcHost.exe process hosts services that run in the background on Windows. it's literally "Service Host. "You may have a dozen services or more running inside that process. more complex is that you'll sometimes see multiple SvcHost.exe's in your TaskManager.
Let me tell you now, Task Manager will not save you. You can see the PIDs for a running Service for the Services tab, but when a service goes insane, good luck nailing it down.
This inevitably leads you to questions like, "What Services are running inside what SvcHost.exe? "And" Which Service is using 100% CPU ."
There's lots of ways to figure this out, but first I'll tell you that simply killing the SvcHost.exe process that is using the most CPU will also kill ALL the other services that were running inside that host process.
There's explain command line ways to figure this stuff out, like
Net start
Or
SC query type = service
Or
Tasklist/svc
But this post is about doing it the easy way without lining up Process IDs and such.
Which service is freaking out?
From the Start Menu, type "Resource Monitor" and run it.
Click the checkboxes to the left of each of the svchost.exe processes (or just those that you care about). Now, switch to the CPU tab:
See the names of the logical services in the middle pane? Now you can sort by the CPU column and you 've got the name of your out of control process.
You can right click and try to stop or restart just the one services, or even use default browser's default search engine to "Search Online" for that service name:
This tip has helped me several times while writing and debugging services. Resource Monitor is your friend. Reset folks don't 'even know it's there!
Enjoy!