Remove unnecessary services in Windows. Remove unnecessary services in windows.

Source: Internet
Author: User

Remove unnecessary services in Windows. Remove unnecessary services in windows.


Start -- run -- msconfig press ENTER

You can find
To delete a service item, open the Registry ("START" -- "run" -- "regedit") and enable HKEY_LOCAL_MACHINE \ SYSTEM \ ControlSet001 \ Services in sequence, delete the service items you want to delete from the registry,
We recommend that you use the auxiliary software to manage your registry project (such as 360 security guard and the Windows optimization master you mentioned) instead of using the Registry Editor.
How to completely delete system service items
If the SC Delete command is used and the Service name contains spaces, enclose them in double quotation marks before the Service name, for example, SC delete "Adobe LM Service ", in addition, the Services subkey is generally not allowed to be deleted, but you can delete the subkeys under it. However, if the Sub-keys are not included in the system itself, you can delete them, especially for viruses, generally, you need to delete the virus after the virus process is completed. Otherwise, the deletion may be rejected. However, if the system comes with services, do not delete them without authorization.


1. delete a service
Method 1: Use the Windows Command SC .exe.
Start -- .exe and enter SC. The method is simple:
SC delete "service name" (if there is a space in the middle of the service name, it must be enclosed in quotation marks), the service name can be found in the service properties, do not mistakenly think of the service name display name.
For example, for the above: SC delete KSD2Service
Method 2: directly edit the Registry
Open the Registry Editor and find the following key values:
HKEY_LOCAL_MACHINE \ SYSTEM \ CurrentControlSet \ Services the General Service will display a master key with the same name here, You can directly Delete the relevant key value.
Method 3. Special Cases
Hosts file, which is a Windows system file. In this case, you only need to clear the relevant services.
2. If a service is automatically created after it is deleted, it indicates that there are processes in the background to monitor and protect it. You must first kill the corresponding process in the Process Manager, or press F8 after it is started to delete it in safe mode.
2. Add a service
You cannot add or delete a service in the Windows XP "services" window. You can use the following methods:
Method 1: Modify the Registry
Run "register regedit.exe" at the beginning of "login", open "Registry Editor", and expand the branch "HKEY_LOCAL_MACHINE \ SYSTEM \ CurrentControlSet \ Services". The service items installed on the local machine are displayed in the right pane.
If you want to create a service, you only need to click "Edit> New> item" and name it, for example, "test". Then, right-click the item, select "New> string value" or "New> DWORD Value. To add a service project, you must add the following key values:
"DisplayName", string value, corresponding service name;
"Descr resume ption", string value, corresponding to the service description;
"ImagePath", string value, the path to which the service program should be located;
"ObjectName", string value, value: "LocalSystem", indicates local login;
"ErrorControl", DWORD value, value: "1 ";
"Start", DWORD value, value 2 indicates automatic operation, value 3 indicates manual operation, value 4 indicates prohibited;
"Type", DWORD Value, the application corresponds to 10, and the other corresponds to 20.
Create an "Enum" item under "test. Follow these steps to add the QQ program as a service. After restarting the computer, open the "service" window and you will see the QQ service you just added.
To delete a service, you only need to delete the key value in the Registry. In this example, You need to delete the QQ service and directly Delete the "HKEY_LOCAL_MACHINE \ SYSTEM \ CurrentControlSet \ Services \ test" branch.
Method 2: Use third-party tools
App To Service V2.7 is a small program with a command line interface. It is: http://www.skycn.com/soft/6397.html. It can also be used to add or delete system services. The specific method is as follows:
1. Add a service
Press enter and type the following command: AppToService/Install program path and name, and then press enter again to confirm.
2. delete a service
Enter the command: AppToService/Remove an existing service name
3. Delete All AppToService services
Enter the command: AppToService/RemoveAll
4. Start all AppToService services
Enter the command: AppToService/StartAll
5. Stop all AppToService services
Enter the command: AppToService/StopAll
Note: here, the AppToService refers to all services added through AppToService, not the original services of the system.


To delete a service, you must first understand what the service is and be sure to delete it. So let's take a look at what the service is.
Windows Service, also known as Windows Service, is the foundation of Windows operating system and Windows network. It is part of the core of the system and supports various Windows operations. Such as DNS clients, printers, Windows Update Services, scheduled tasks, Windows Time Services, and alarms. If these services cannot be properly managed, the normal operation of the machine will be affected.
A service can be a win32executable program, and a worker is a process formed by running a. dll through rundll32.exe. (The original service is only some code, but windows is a bunch of Code-. +)
However, it is different from a common application, such as WORD. When you open work, there will be an interface, and related processes will appear in the task manager, however, the Service neither has a user interface nor has its progress (for system services, there is no process with the same name as the service in the task manager, but the process svchost is a bit special, however, it is not covered in this article. For services running through rundll32in the task manager, you can only see rundll32.exe but not the actual dll name ). In addition, it cannot run the corresponding. exe program directly and repeatedly. How does one control a service in Windows?
Windows Services are managed by a more advanced services.exe Service, which is responsible for starting, stopping, running, and pausing services. The most common operation is to complete related operations through the Windows Service MMC interface.
How can I delete a software installed on a computer that is automatically registered as a system service (especially some rogue software) during installation ??
Method 1:
First, you need to completely disable unnecessary Services. After restarting the SYSTEM, you can modify the Registry to delete it: locate the "HKEY_LOCAL_MACHINE \ SYSTEM \ CurrentControlSet \ Services" branch in the registry, it lists the registry key values of each service in the current system. You can delete the corresponding project to remove it from the Service Manager Console.
Method 2:
Use the Windows Command SC .exe.
Start-> Run-> cmd.exe, and then enter SC to see it.
Easy to use: delete "service name" (if there is a space in the middle of the service name, you need to quote it)
Special Cases
Hosts file because it is a Windows system file. In this case, you only need to clear the program running rundll32.
2. If a service is automatically created after it is deleted, it indicates that there are processes in the background to monitor and protect it. You must first kill the corresponding process in the Process Manager, or press F8 after it is started to delete it in safe mode.
Game life response acquisition rate: 8.8%
Good: 2
Bad: 0
You do not need to delete it. you can disable it.
Boring answer acquisition rate: 26.4%
Good: 0
Bad: 0
There are two ways to delete:


Method 1: Use the Windows Command SC .exe.
Start -- .exe and enter SC. The method is simple:
SC delete "service name" (if there is a space in the middle of the service name, quotation marks are required)
For example, for the above: SC delete KSD2Service


Method 2: directly edit the Registry
Open the Registry Editor and find the following key values:
HKEY_LOCAL_MACHINE \ SYSTEM \ CurrentControlSet \ Services the General Service will display a master key with the same name here, You can directly Delete the relevant key value.


Iii. Special Cases


Hosts file, which is a Windows system file. In this case, you only need to clear the relevant services.


2. If a service is automatically created after it is deleted, it indicates that there are processes in the background to monitor and protect it. You must first kill the corresponding process in the Process Manager, or press F8 after it is started to delete it in safe mode.



Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.