How to Fix “Windows Security Center Not Opening or Working”
Executive Summary & Diagnostic Flowchart
When the Windows Security Center (formerly Windows Defender) refuses to open, crashes instantly, or shows a blank black/white window, your system becomes vulnerable to malware and background exploits. This issue typically occurs due to corrupted system UWP packages, disabled background services (wscsvc), registry key misconfigurations, or conflicts with third-party security software.
│
▼
┌──────────────────────────────────────────────────────────────────────────┐
│ STEP 1: REPAIR & RESET SECURITY APP │
│ ├─► Terminate & Reset via Windows App Settings │
│ └─► Re-register SecHealthUI package using PowerShell │
└─────────────────────────┬────────────────────────────────────────────────┘
│
▼
┌──────────────────────────────────────────────────────────────────────────┐
│ STEP 2: SERVICE CONFIGURATION & SYSTEM INTEGRITY │
│ ├─► Enable Security Center Service (`wscsvc`) in services.msc │
│ └─► Execute DISM RestoreHealth & SFC File Scans │
└─────────────────────────┬────────────────────────────────────────────────┘
│
▼
[ SYSTEM REBOOT & SECURITY RESTORED ] ──► Verified via Asdullah OS Portal
Understanding Why Windows Security Fails to Open
If clicking the Windows Security icon in your taskbar or start menu does nothing, opens a blank screen, or immediately closes, you are dealing with an application registration crash or background service failure.
- “You’ll need a new app to open this windowsdefender link.”
- Windows Security displays a blank grey/white window on launch.
- “The Windows Security Center service can’t be started.”
- Security shield tray icon is missing or displays an exclamation mark.
Method 1: Repair and Reset Windows Security via App Settings
Windows 10 and 11 feature built-in repair tools that can fix corrupt application files without altering your files or security settings.
Step-by-Step Instructions:
- Open the Start Menu and search for Windows Security.
- Right-click on Windows Security and select App settings.
- Scroll down to the Reset section.
- Click Repair first. Wait 30 seconds and try launching the app.
- If it still fails to open, click Reset to restore the app to factory default configuration.
Method 2: Re-Register Windows Security via PowerShell
If the user interface (SecHealthUI) component is deregistered or damaged, executing a single PowerShell script reinstalls and rebinds the app package to the operating system.
Step-by-Step Instructions:
- Right-click the Start Button and choose Terminal (Admin) or PowerShell (Admin).
- Copy and paste the following command into the terminal window:
Get-AppxPackage Microsoft.SecHealthUI -AllUsers | Reset-AppxPackage
- Press Enter and allow the command execution to complete.
- If you are running older Windows 10 builds, run this alternative universal command:
Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
- Restart your computer and open Windows Security. Learn more on Asdullah PowerShell Troubleshooting Portal.
Method 3: Start the Security Center Service (wscsvc)
The core Windows Security Center service (wscsvc) monitors antivirus status, firewall states, and system security. If set to Disabled, the app cannot initialize.

Step Screenshot 3.1: Enabling and Starting the Security Center (wscsvc) in Windows Services Management Console.
Step-by-Step Instructions:
- Press Windows Key + R, type services.msc, and hit Enter.
- Scroll down and locate Security Center in the list.
- Right-click Security Center and select Properties.
- Set the Startup type dropdown to Automatic (Delayed Start).
- If the Service Status is stopped, click the Start button.
- Click Apply and then OK.
Method 4: Perform System File Checker (SFC) and DISM Repairs
If core system libraries are corrupted by a malware infection or unexpected system shutdown, running SFC and DISM restores missing system binaries.
The restore operation completed successfully.
Windows Resource Protection found corrupt files and successfully repaired them.
Step-by-Step Instructions:
- Press Windows Key + S, search for cmd, right-click Command Prompt, and click Run as administrator.
- Run DISM health restoration:
dism /online /cleanup-image /restorehealth
- Once completed, run the System File Checker scan:
sfc /scannow
- Restart your PC once the scan reaches 100%.
Method 5: Check Windows Registry Start Value for Security Center
Malware often alters the registry to disable security software. Forcing the registry startup key back to Automatic ensures the Security Center starts correctly.
- Press Windows Key + R, type regedit, and hit Enter.
- Navigate to:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\wscsvc
- In the right-hand pane, double-click the DWORD entry named Start.
- Change the Value data to 2 (Automatic) and click OK.
- Reboot your computer.
Institutional & Technical Reference Index
Official Windows security manuals and diagnostic technical resources:
Conclusion
A non-responsive Windows Security application can leave your PC exposed to threats. Following these steps—from app resets and PowerShell package re-registration to enabling background services—will restore complete functionality to your Windows Security Center.
For more Windows OS troubleshooting, security tips, and system maintenance guides, visit Asdullah.com.
#WindowsDefenderNotOpening
#SecHealthUI
#PowerShellFix
#Windows11Repair

