Error code: 0x80070422 or Service not found

Windows Security Center Service Not Running – Fix It Fast

Cybersecurity & Malware Beginner 👁 9 views 📅 Jun 24, 2026

Your Windows Security Center stopped, so Defender won't start. Here's the direct fix and why it happens.

You open Windows Security and see it's dead. Annoying, right?

Let's skip the intro. Open Services — hit Win + R, type services.msc, press Enter. Look for Security Center in the list. If it's stopped or missing, here's the fix.

Step 1: Restart the Service

  1. Right-click Security CenterProperties.
  2. Set Startup type to Automatic.
  3. Click Start to run it now.
  4. Hit Apply → OK.

What if the start button is grayed out? That means the service is corrupt or disabled by a system policy. Move to Step 2.

Step 2: Fix via Command Line

Open Command Prompt as Admin. Right-click Start → Command Prompt (Admin) or PowerShell (Admin). Run these:

sc config wscsvc start= auto
sc start wscsvc

If you get Access Denied, your user account is not admin. Log into an admin account first.

Step 3: Check for Group Policy Blocking It

Run gpedit.msc (Pro/Enterprise only). Go to:

Computer Configuration → Administrative Templates → Windows Components → Security Center

Double-click Turn off Security Center. Set to Not Configured or Disabled. Apply. Then reboot.

Why Did This Happen?

The Security Center service (wscsvc) is a watchdog. It monitors your firewall, antivirus, and updates. If it's off, Windows thinks everything is fine — even when Defender is disabled. The real cause is usually one of three things:

  • Malware disabled it — Some adware and trojans kill Security Center so they can run without being flagged.
  • You (or a tool) disabled it via Group Policy — Happens with debloating scripts. They go too far.
  • Corrupt service database — Rare, but happens after a partial Windows update.

Why Step 2 works: sc config rewrites the service's registry entry directly (HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\wscsvc). It bypasses the Services GUI limitations.

Less Common Variations of This Problem

1. Security Center Service Is Missing Entirely

If you don't see it in services.msc, run this in admin CMD:

sfc /scannow
dism /online /cleanup-image /restorehealth

Then reboot. If still missing, you need to reinstall the Security Center component. Download the latest Windows update manually from Microsoft Catalog, install it. That often brings the service back.

2. Service Shows Running But Windows Security Still Broken

That's a different issue — the service runs, but the UI is corrupted. Fix: reg delete HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer /v SettingsTaskbarPrevent /f (check exact key for your version). Or run the Windows Security app reset via PowerShell: Get-AppxPackage *Microsoft.Windows.SecHealthUI* | Reset-AppxPackage.

3. Service Hangs on Stopping or Starting

Kill the process: taskkill /f /im svchost.exe (be careful — this kills all svchost instances). Better: restart the whole PC. If it hangs again, your system has deeper corruption — run chkdsk /f and check disk health.

Prevention — Keep Security Center From Dying Again

  • Don't run random debloaters. They often kill Security Center. If you must, read the logs first.
  • Keep Windows Update on. Security Center relies on the update service. Disabling updates can break it.
  • Run a malware scan regularly. Use Malwarebytes or Defender offline scan to catch things that kill this service.
  • Set a reminder to check the service. Every 3 months, open services.msc and look at Security Center. Takes 10 seconds.

One last thing: if you use third-party antivirus, Security Center might show as off deliberately. That's normal — it yields control to the other AV. Only worry if you're on Defender and it's dead.

Was this solution helpful?