How to reset the Windows services.msc console step by step

Last update: 24/07/2025
Author Isaac
  • The services.msc console allows you to control all system and third-party services in Windows.
  • Resetting it is useful in case of configuration errors, crashes, or problems after changes in its use.
  • There are graphical and manual methods to remove corrupt or stuck configurations.

services.msc

Have you ever had a problem with the Windows Services console and don't know how to restore it to its original state? If you've encountered problems managing system services, or just want to know how to restore it to its original state, How to do an reset from the services.msc consoleThis article will give you all the keys you need, exploring each option in detail and resolving both the most frequently asked questions and the most complicated situations that can arise in different versions of Windows.

Managing Windows services may seem like something reserved for advanced users, but anyone can encounter a console that won't start correctly, settings that won't save, or essential services that won't start. Here you'll see how to restore the services console, the different ways to do it depending on the situation, and recommendations to ensure you don't leave anything important out.

What is the services.msc console and what is it used for?

The services.msc console is the graphical service manager Windows. From it, you can control which programs and system components run in the background, from network connectivity to update services or power management. It's the official tool that allows you to start, stop, pause, restart and set the mode Boot of each service both Windows and third-party.

Accessing this console is very easy: just press Windows + R, to write services.msc and press Enter. You can also open it from the Control Panel, in the Administrative Tools section, by searching for the 'Services' option. From the start, you'll see a list of all available services and their current status.

Why would you want to restart or reset services.msc?

Sometimes, after making changes or connecting the service manager to a remote machine, the system remembers previous settings or displays incorrect information. Or, the console may not open at all, display permission errors, or freeze. You may even have changed the window settings and want to return them to their original state.

  How to disable or customize the lock screen in Windows 11

It is recommended reset the services console When display problems, configuration errors, or conflicts arise in managing system services. This allows for a clean configuration and prevents errors resulting from incorrect settings.

Methods to reset the services.msc console in Windows

reset services.msc

Resetting from the console itself (deleting configuration files)

The easiest way to return the services console to its original state is to delete the configuration files associated with services.mscThis clears any customizations, such as open windows or column order. The procedure is as follows:

  1. Open the services console normally.
  2. Click on the menu Archive and then Options.
  3. Find and press the button Delete files (name may vary depending on the version of Windows).
  4. Confirm the operation in the message that appears.
  5. Finally, close and reopen the console so that Windows recreates the default settings.

This method removes customizations such as open windows, column order, or selected remote computer. It's safe and fast, but if the console won't even open, you'll have to use a manual method.

Manually deleting the services.msc file

If the console won't boot or you can't access its settings, you can manually delete the configuration file:

  1. Completely close the Service Manager.
  2. press Windows + R, writes % Appdata% and hit Enter.
  3. Access the folder Microsoft and then to mmc.
  4. Locate the file corresponding to the services console (services.msc) and delete it.
  5. Restart your computer. The next time you open the console, Windows will generate a clean configuration, similar to a fresh installation.

This method will help you fix corrupted settings, stuck history, or unexplained crashes.

Managing services from the command line

When the graphical console fails or you need to make advanced changes, you can resort to the line of commands through DCM o PowerShell, which offer specific commands for quickly managing services. For more details on advanced network and service management, you can consult How to use Netsh on Windows 11.

  Google Chrome Example: View full history of downloaded files (example).

CMD commands to control services

From a CMD window (cmd.exe), you can use the following commands:

  • Start a service: net start NombreServicio
  • Stop a service: net stop NombreServicio
  • Pause a service: net pause NombreeServicio
  • Resume a service: net continue NombreServicio

Replace “ServiceName” with the actual name of the service, which you can check in the services console or by using the command sc query.

PowerShell: The Advanced Alternative

PowerShell provides greater flexibility, allowing for searches, group changes, and automation. Some useful commands include:

  • List all services: Get-Service
  • Filter by name: Get-Service -DisplayName 'Nombre*'
  • Start a service: Start-Service -Name NombreServicio
  • Stop a service: Stop-Service -Name NombreServicio
  • Restart services: Restart-Service -Name NombreServicio

These commands facilitate management in complex or multi-service environments.

Administrator access

It is essential open CMD or PowerShell as administrator to modify services. Without elevated permissions, you'll encounter access errors and won't be able to make changes to many critical services.

Related article:
Task Manager shows 0% disk or network usage: causes, diagnosis, and solutions

What to do when permission errors prevent reset

In versions like Windows Vista Home or when the user profile doesn't have administrative permissions, errors may occur that prevent you from modifying services. Some examples include:

  • Not being able to open services.msc as administrator.
  • Error using sc config to modify startup modes.
  • Inability to restore the system to previous points.

Major problems can occur if you disable essential services while trying to optimize your system and don't have the proper permissions to revert the changes. In these cases, if you don't have the permissions, you can try the following options:

Workarounds if you don't have administrator permissions

  • Access in safe mode: Reboot and repeatedly press F8 (or Shift + Restart in the shutdown menu) to enter Safe Mode, where some settings can be restored.
  • From the login screen, hold Shift and select Restart to access advanced recovery options.
  • In the Recovery Console, you can use commands to replace utilman.exe with cmd.exe and open an elevated console, although this requires advanced knowledge.
  1. Run commands like:
    move c:\windows\system32\utilman.exe c:\
    copy c:\windows\system32\cmd.exe c:\windows\system32\utilman.exe
  2. Reboot and on the login screen, click the accessibility icon to open a command console.
  3. From there, you can use msconfig y sc config to manage critical services.
  4. When finished, restore the original settings with:
    copy c:\utilman.exe c:\windows\system32\utilman.exe

This procedure is advanced and requires caution, as an error can affect system stability.

  How to edit the hosts file in Windows, Linux, and macOS step by step

Which services you should NOT touch under any circumstances

Modifying services without knowledge can leave the system inoperable, offline, or with performance issues. Before making changes, investigate their function and dependencies and create a restore point.

Some services are essential for system startup and connectivity. If you're unsure, seek advice or test in a virtual machine.

Tips for optimizing service management after the reset

  • Periodically review services after installing or uninstalling software.
  • Activate only essential services, but do not disable those you are not familiar with.
  • If problems arise, revert to the previous settings or use safe mode to revert changes.

A good reset of the services.msc console helps eliminate problematic settings that can cause crashes and ensures full control over system services. To facilitate optimization, you can also consult The different boot modes in Windows 11.

By properly managing services and keeping them up to date, you'll improve the stability and security of your operating system. Proper recovery and maintenance ensure optimal performance and resolve any conflicts that may arise with There.

Recover password in Windows 11-1
Related article:
How to Recover Password in Windows 11: Complete Guide and All Methods

Leave a comment