Why do I have 13 svchosts.exe running

Status
Not open for further replies.
Have a look here and see if you can use the Command:
http://www.neowin.net/forum/lofiversion/index.php/t544659.html
Nice find on that link Bobbye! Will look into each of those services to see if they have the same impact on Akai's system.

In parallel suggest we also look at CPU Usage from a system perspective. When usage is high, try to see
- if that one svchost process in particular is contributing and by how much
- if any other process regularly appearing when usage is high

Akai: [post=669536]See this post on how to use Process Explorer to help find processes using the most CPU[/post]
 
Akai, this is not my forte, but give it a try:
Check which svchost is causing the problems by opening the Task Manager and matching the PID shown there with the PID shown in TaskList. Done.

Once you identify the proper svchost, take a look at the services that are being launched by that svchost. Done
Disable all the services started by it and enable it one by one to isolate the exact service that's causing the problem. Following:

Copy-paste this into notepad and Save As something.bat ( choose All Files in the drop-down box). Run the batch file.

CODE
@echo off

net stop AudioEndpointBuilder
net stop IPBusEnum
net stop Netman
net stop PcaSvc
net stop SysMain
net stop TrkWks
net stop UxSms
net stop WPDBusEnum
net stop wudfsvc

pause
net start AudioEndpointBuilder
pause
net start IPBusEnum
pause
net start Netman
pause
net start PcaSvc
pause
net start SysMain
pause
net start TrkWks
pause
net start UxSms
pause
net start WPDBusEnum
pause
net start wudfsvc
After each Pause, a Service is started. Wait for a Service to load and check the memory usage. If its normal, then that's not the Service. Keep starting the Services and waiting till you get the Service that's using up the memory.

This is from a site addressing a problem almost identical to yours. I just tailored the processes to yours.
http://www.msfn.org/board/lofiversion/index.php/t97098.html
 
Status
Not open for further replies.
Back