No problem! svchost.exe is a process that always runs with Windows and has quite a few problems with it. Here I would like to share some information about svchost.exe. What is it? According to Microsoft: svchost.exe is the common hostname for services (services) running from dynamic link libraries – dynamic link libraries ( .dll).In the past, Microsoft started moving all services inside Windows into .dll files instead of .exe files. The implication of this is that more programmers can use it. But the problem arises that you cannot directly start the .dll file in Windows but must go through an executable .exe file. And the svchost.exe process was born. Why are there so many svchost.exe running? Because Windows has so many services and if they all run under a single svchost.exe then only 1 of them will fail. Windows also dies. So the services are organized into logical groups, each group will run under a single svchost.exe. For example 1 svchost.exe runs 3 firewall related services, 1 svchost.exe runs UI related services… So what can we do about it? You can cut down on unnecessary services by disabling or stopping unnecessary services. Also if you see that a certain svchost.exe is using a lot of CPU resources, you can restart the services running by that svchost.exe. And to determine which services are running under a certain svchost.exe then we have the following way:* Using Command Prompt.Open Command Prompt, type tasklist /SVC:

Viewing: What is Svchost.exe

This way you only see the service names are quite confusing but do not know if it works or what its real name is * View in Task Manager Right click on a certain svchost.exe and select Go to Services(s)It will automatically switch to the Services tab and have the services of svchost.exe selected:

READ MORE  Common Types of Ethernet Cables

See also: Download Card Game For Windows Phone, Download Card Game For Windows Phone

See also: What is Docker – Learn More Knowledge About Docker

Disable Services This is probably known by everyone, open RUN, type services.msc and disable. Or there is another way from Command Prompt: You type the command sc config abc start= disabled With abc being the service name above, in the list when you use the tasklist command /SVC in Command Prompt.source windowsvn.net