How Are Services Used?

Services can be used by Windows to control many things like printing, sharing files, communicating with Bluetooth devices, checking for software updates, hosting a website, etc. A service can even be installed by a 3rd party, non-Windows program, like as a file backup tool, disk encryption program, online backup utility, and more.

How Do I Control Windows Services?

Since services don’t open and display options and windows like you’re probably used to seeing with a program, you must use a built-in Windows tool to manipulate them. Services is a tool with a user interface that communicates with what’s called Service Control Manager so that you can work with services. Another tool, the command-line Service Control utility (sc.exe), is available as well, but it’s more complex to use and so is unnecessary for most people.

How to See What Services Are Running on Your Computer

The easiest way to open Services is through the Services shortcut in Administrative Tools, which is accessible via Control Panel. Another option is to run services.msc from a Command Prompt or the Run dialog box (WIN+R). If you’re running Windows 11, Windows 10, Windows 8, Windows 7, or Windows Vista, you can also see services in Task Manager. Services that are actively running right now will say Running in the Status column. See the screenshot above for an example. Although there are many more, here are some examples of Windows services you might see running on your computer: Apple Mobile Device Service, Bluetooth Support Service, DHCP Client, DNS Client, HomeGroup Listener, Network Connections, Plug and Play, Print Spooler, Security Center, Task Scheduler, Windows Firewall, and WLAN AutoConfig. Double-clicking (or tapping) on any service will open its properties, which is where you can see the purpose of the service and, for some, what will happen if you stop it. For example, opening the properties for Apple Mobile Device Service explains that it’s used to communicate with Apple devices that you plug into your computer.

How to Enable and Disable Windows Services

Some services may need to be restarted for troubleshooting purposes if the program they belong to or the task they perform isn’t working as it should. Other services may need to be stopped completely if you’re trying to reinstall the software, but an attached service won’t stop on its own, or if you suspect that the service is being used maliciously. With Services open, right-click (or press-and-hold) any of the services for more options, which let you start, stop, pause, resume, or restart it. These options are pretty self-explanatory. As we said above, some services may need to be stopped if they’re interfering with a software install or uninstall. Say, for example, you’re uninstalling an antivirus program, but for some reason the service isn’t shutting down with the program, causing you to be unable to completely remove the program because part of it is still running. This is one case where you’d want to open Services, find the appropriate service, and choose Stop so that you can continue with the normal uninstall process. One instance where you may need to restart a Windows service is if you’re trying to print something, but everything keeps getting hung up in the print queue. The common fix for this problem is to go into Services and choose Restart for the Print Spooler service. You don’t want to completely shut it down because it needs to run in order for you to print. Restarting the service shuts it down temporarily, and then starts it back up, which is like a simple refresh to get things running normally again.

How to Delete/Uninstall Windows Services 

Deleting a service may be the only option you have if a malicious program has installed a service that you can’t seem to keep disabled. The option can’t be found in the services.msc program, but it is still possible to completely uninstall a service in Windows. This won’t only shut the service down but will delete it from the computer, never to be seen again (unless, of course, it’s reinstalled).  Uninstalling a Windows service can be done in both the Windows Registry and with the Service Control utility (sc.exe), similar to svchost.exe, via an elevated Command Prompt. You can read more about deleting a service using these methods at Stack Overflow. If you’re running Windows 7 or an older Windows OS, the free Comodo Programs Manager software can be used to delete Windows services, and it’s much easier to use than either method above (but doesn’t work in Windows 11/10/8). Although it’s rare, some programs let you uninstall their service from inside the software’s normal graphical user interface. This might be a toggle you can uncheck, or a dedicated “delete service” button.

More Information on Windows Services

Services are different from regular programs in that a regular piece of software will stop working if the user logs out of the computer. A service, however, is running with the Windows OS, sort of in its own environment, which means the user can be logged completely out of their account but still have certain services running in the background. Services can be started when the computer boots up, versus regular apps that start only after you log in to a user account. While it might come off as a disadvantage to always have services running, it’s actually very beneficial, like if you use remote access software. An always-on service installed by one of those programs enables you to remote into your computer even if you’re not logged on locally. There are other options within each service’s properties window on top of what is described above that lets you customize how the service should start up (automatically, manually, delayed, or disabled) and what should automatically happen if the service suddenly fails and stops running. A service can also be configured to run under the permissions of a particular user. This is beneficial in a scenario where a specific application needs to be used, but the logged-in user doesn’t have proper rights to run it. You’ll likely only see this in a scenario where there’s a network administrator in control of the computers. Some services can’t be disabled through regular means because they may have been installed with a driver that prevents you from disabling it. If you think this is the case, you can try finding and disabling the driver in Device Manager or booting into Safe Mode and attempting to disable the service there (because most drivers don’t load up in Safe Mode). Services are created as Microsoft Visual Studio projects. After you create and build an app, you can install it by running the command-line utility InstallUtil.exe. Microsoft’s Introduction to Windows Service Applications includes more information on this.