A practical guide to restoring disabled Windows services safely, fixing broken startup types, and bringing system components back to their normal behavior.
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.
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.
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.
rstrui, and press Enter.After the restore completes, check whether Windows Update, networking, audio, printing, or the affected feature works again.
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.
services.msc and click OK.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. |
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.
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 -AutoSizeTo check one service, use its service name. For example, to inspect Windows Update:
Get-Service -Name wuauserv | Select-Object Name, DisplayName, Status, StartTypeTo change a specific service from Disabled to Manual, run PowerShell as Administrator and use:
Set-Service -Name wuauserv -StartupType ManualTo set a service to Automatic:
Set-Service -Name Audiosrv -StartupType AutomaticIf 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.
DISM /Online /Cleanup-Image /RestoreHealth
sfc /scannowRestart Windows after the scan completes. Then open services.msc and check the affected services again.
Windows service configuration is stored in the registry under:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\ServicesIf you previously exported this registry branch, you can restore it by double-clicking the saved .reg file or importing it through Registry Editor.
regedit, and press Enter.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.
setup.exe.This method is especially useful after aggressive optimization tools, failed registry edits, malware cleanup, or broken Windows Update components.
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.
If a service does not start after you restore its startup type, use these checks.
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.
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.
Press Win + X, open Event Viewer, and check Windows Logs → System. Service Control Manager events often explain why a service failed.
If a tuning utility changed services automatically, undo its changes from the same program if possible. Then restart Windows and check Services again.
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.
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.
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.
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.
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.
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.
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.