Windows Services Guide · 2026

How to Enable Default Services in
Windows 10 & Windows 11

A practical guide to restoring disabled Windows services safely, fixing broken startup types, and bringing system components back to their normal behavior.

⊞ Windows 10 ⊞ Windows 11 🔧 Services.msc 🛡️ Safe Recovery 🕐 8 min read

What Does “Enable Default Services” Mean in Windows?

Windows uses background services to run updates, networking, printing, audio, security, indexing, Bluetooth, diagnostics, and many other system functions. When a service is disabled manually, by a “debloater” script, by optimization software, or by malware, related Windows features may stop working.

Restoring default services usually means changing incorrectly disabled services back to their normal Startup type: Automatic, Automatic (Delayed Start), or Manual. In many cases, Windows services do not need to be running all the time. Some default services are set to Manual and start only when Windows needs them.

Important: Windows does not include a universal “reset all services to default” button. Default service settings can differ between Windows 10, Windows 11, Home, Pro, Enterprise, installed hardware, optional features, and Microsoft updates. Avoid applying random service lists from unknown sources.

Before You Restore Default Windows Services

Changing services can fix serious system problems, but incorrect changes can also break networking, Windows Update, Microsoft Store, audio, printers, sign-in options, or security features. Before making changes, follow these precautions.

Best approach: If you know when the problem started, use System Restore first. If you only know that many services were changed, repair Windows instead of editing dozens of services manually.

Method 1 — Restore Default Services with System Restore

System Restore is the safest option when services were changed recently. It can roll back service configuration, registry settings, drivers, and system files without deleting your personal documents.

  1. Press Win + R, type rstrui, and press Enter.
  2. Select Choose a different restore point if the option appears.
  3. Pick a restore point created before the services were changed.
  4. Click Scan for affected programs to review what may be changed.
  5. Confirm the restore operation and wait for Windows to restart.

After the restore completes, check whether Windows Update, networking, audio, printing, or the affected feature works again.

Method 2 — Enable Default Windows Services in Services.msc

The Services console is the standard graphical tool for changing service startup settings. Use it when only a few services are disabled and you know which Windows feature is affected.

  1. Press Win + R.
  2. Type services.msc and click OK.
  3. Find the service you want to restore.
  4. Double-click the service name.
  5. Open the Startup type menu and select the appropriate default-like setting: Automatic, Automatic (Delayed Start), or Manual.
  6. Click Apply.
  7. If the service should be running immediately, click Start.
  8. Click OK and restart the computer if required.
Do not set everything to Automatic. Many Microsoft services are designed to stay on Manual and start only when triggered. Setting all services to Automatic can slow startup, increase resource usage, and create new errors.

Windows Service Startup Types Explained

To restore services correctly, you need to understand what each startup type does. “Manual” does not always mean disabled. It often means that Windows will start the service only when needed.

Startup type Meaning When to use it
Automatic The service starts during Windows startup. Used for core services that must be available immediately, such as security, audio, networking, or event logging components.
Automatic (Delayed Start) The service starts automatically after the main boot process. Useful for services that are needed, but not immediately during boot.
Manual The service starts only when Windows, an app, or another service requests it. Common default setting for many Windows components.
Disabled The service cannot start until the startup type is changed. Use only when you are certain the service is not required, or when a Microsoft feature is intentionally unavailable.

Common Default Windows Services Reference for Windows 10 and Windows 11

The table below lists common services that users often disable by mistake. Treat it as a practical recovery reference, not as a complete universal default list. Exact defaults can vary by Windows edition, device configuration, installed features, and update level.

Service display name Service name Typical default startup type What it affects
Windows Update wuauserv Manual / Trigger Start Windows updates, Microsoft Store dependencies, update scans.
Background Intelligent Transfer Service BITS Manual Background downloads used by Windows Update and other Microsoft components.
Cryptographic Services CryptSvc Automatic Certificates, update signatures, catalog database, system file verification.
Windows Installer msiserver Manual Installing, modifying, and removing MSI-based programs.
Windows Event Log EventLog Automatic System logs, diagnostics, troubleshooting, security auditing.
Windows Audio Audiosrv Automatic Sound playback and audio devices.
Windows Audio Endpoint Builder AudioEndpointBuilder Automatic Audio device detection and routing.
Print Spooler Spooler Automatic Printing, printer discovery, print queue management.
WLAN AutoConfig WlanSvc Automatic Wi-Fi connections and wireless profiles.
DHCP Client Dhcp Automatic Automatic IP address configuration.
DNS Client Dnscache Automatic DNS name resolution and DNS cache.
Network Location Awareness NlaSvc Automatic Network profiles, firewall profile selection, connectivity detection.
Windows Defender Firewall mpssvc Automatic Firewall rules and network protection.
Security Center wscsvc Automatic (Delayed Start) Security notifications, antivirus status, firewall status.
Task Scheduler Schedule Automatic Scheduled tasks, maintenance, updates, app background jobs.

If a service is missing from your system, do not import it from another computer. Some services appear only when a feature, driver, role, or Windows edition supports them.

Method 3 — Find Disabled Windows Services with PowerShell

PowerShell is useful when you suspect that many services were disabled. The command below lists disabled services without changing anything.

Get-Service | Where-Object {$_.StartType -eq "Disabled"} | Sort-Object Name | Format-Table Name, DisplayName, Status, StartType -AutoSize

To check one service, use its service name. For example, to inspect Windows Update:

Get-Service -Name wuauserv | Select-Object Name, DisplayName, Status, StartType

To change a specific service from Disabled to Manual, run PowerShell as Administrator and use:

Set-Service -Name wuauserv -StartupType Manual

To set a service to Automatic:

Set-Service -Name Audiosrv -StartupType Automatic
Be careful with scripts: Do not run commands that change every disabled service at once. Some disabled services may be disabled by design on your edition of Windows.

Method 4 — Repair Windows System Files with SFC and DISM

If services fail to start, return errors, or immediately stop after being enabled, Windows system files or the component store may be damaged. Use DISM and SFC from an elevated Command Prompt or Windows Terminal.

  1. Right-click Start.
  2. Select Terminal (Admin), Windows PowerShell (Admin), or Command Prompt (Admin).
  3. Run the following commands one by one:
DISM /Online /Cleanup-Image /RestoreHealth sfc /scannow

Restart Windows after the scan completes. Then open services.msc and check the affected services again.

Method 5 — Restore Windows Services from a Registry Backup

Windows service configuration is stored in the registry under:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services

If you previously exported this registry branch, you can restore it by double-clicking the saved .reg file or importing it through Registry Editor.

  1. Press Win + R, type regedit, and press Enter.
  2. Select FileImport.
  3. Choose your previously saved services registry backup.
  4. Confirm the import and restart the computer.
Do not import service registry files from another PC unless you fully understand the risk. Service entries can depend on drivers, hardware, installed software, Windows edition, and exact build. A wrong registry import may prevent Windows from booting correctly.

Method 6 — Restore Default Services with an In-Place Repair Install

If many services were damaged or disabled and System Restore is not available, an in-place repair installation is often safer than manually editing dozens of service entries. This process reinstalls Windows system components while keeping personal files, apps, and most settings.

  1. Download the Windows ISO or Installation Assistant from Microsoft.
  2. Mount the ISO by double-clicking it.
  3. Run setup.exe.
  4. Choose the option to keep personal files and apps.
  5. Follow the setup wizard and wait for Windows to complete the repair.

This method is especially useful after aggressive optimization tools, failed registry edits, malware cleanup, or broken Windows Update components.

Windows Services You Should Not Disable

Some services are essential for a stable system. Disabling them can cause boot problems, broken networking, login issues, missing sound, failed updates, or security warnings.

Troubleshooting: Services Still Do Not Work After Enabling Them

If a service does not start after you restore its startup type, use these checks.

Check service dependencies

In services.msc, double-click the service and open the Dependencies tab. If a required dependency is disabled or broken, the main service may not start.

Read the exact error message

When Windows shows an error such as Error 1068, Error 1053, or Access is denied, search for the exact service name and error code. Different errors require different fixes.

Check Event Viewer

Press Win + X, open Event Viewer, and check Windows LogsSystem. Service Control Manager events often explain why a service failed.

Remove third-party “optimizer” changes

If a tuning utility changed services automatically, undo its changes from the same program if possible. Then restart Windows and check Services again.

Run a malware scan

Malware may disable Windows Update, Defender-related components, firewall services, or backup features. Use Windows Security or a trusted offline scanner if suspicious changes return after reboot.

Frequently Asked Questions About Restoring Default Services in Windows

Is there a command to reset all Windows services to default?

No reliable built-in command resets every Windows service to its exact default state for every edition and configuration. The safest options are System Restore, SFC/DISM repair, or an in-place repair install.

Should I set all disabled services to Automatic?

No. This is a common mistake. Some services are disabled because the related feature is not installed, not supported, or intentionally turned off. Many services should be Manual, not Automatic.

Can I copy service settings from another computer?

It is not recommended. Another PC may have different hardware, drivers, Windows edition, optional features, security software, or update level. Copying service registry entries can cause serious problems.

Why is a service set to Manual but still works?

Manual services can start automatically when triggered by Windows, an application, a scheduled task, or another service. Manual does not mean the service is broken.

What should I do if Windows Update services were disabled?

Start by restoring Windows Update, Background Intelligent Transfer Service, Cryptographic Services, and Windows Installer to their normal startup types. Then run DISM and SFC, restart Windows, and check for updates again.

Conclusion: The Safest Way to Enable Default Services in Windows

To enable default services in Windows 10 or Windows 11, avoid one-click “enable everything” scripts. Start with System Restore if the issue is recent. For individual services, use services.msc and restore only the affected service to its normal startup type. If many services are damaged, run DISM and SFC or perform an in-place repair installation.

Recommended order: System Restore → Services.msc for known services → PowerShell inspection → DISM and SFC → in-place repair install. This order fixes most service-related problems with the lowest risk.