Figuring out why my SVCHOST.EXE is at 100% CPU without complicated tools in Windows 7
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 many 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. Many folks don't' even know it's there!
Enjoy!
About Scott
Scott Hanselman is a former professor, former Chief Architect in finance, now speaker, consultant, father, diabetic, and Microsoft employee. He is a failed stand-up comic, a cornrower, and a book author.
About Newsletter
BTW OpenID login here is the least user friendly system I have used in a while... WTF?
+
for quicker access use start->Run->resmon
then it will be cached there..
Also the SysInternals tools mentioned by Santoch are of incredible value for programmers and other IT professionals.
Comments are closed.