Windows Security (Microsoft Defender) Won't Open or Shows a Blank Screen — Fix
You click Windows Security (or Microsoft Defender) and nothing happens — it flashes and closes, never opens, or loads to an empty white screen with no tiles.
Why: Windows Security is a built-in app (its package is Microsoft.SecHealthUI) with a separate background service. When the app itself becomes corrupted — often after a feature update or a botched third-party antivirus install — the window won’t render even though Defender’s protection may still be running underneath. The fixes below repair the app without touching your actual protection, starting with the quickest.
Fix 1: Repair, then Reset the app
- Open Settings → Apps → Installed apps.
- Find Windows Security, click the … menu → Advanced options.
- Click Repair first (this keeps settings). Try launching the app.
- If it still won’t open, return and click Reset. Launch again.
Fix 2: Re-register the app with PowerShell
If Repair/Reset didn’t help, re-register the package:
- Right-click Start → Terminal (Admin).
- Run:
Get-AppxPackage Microsoft.SecHealthUI -AllUsers | Reset-AppxPackage - Restart the PC and open Windows Security again.
If
Reset-AppxPackageisn’t recognized on an older build, use this instead:Get-AppxPackage Microsoft.SecHealthUI -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
Fix 3: Repair the underlying Windows image
A blank screen often means the component store behind the app is damaged. Repair it:
- In Terminal (Admin), run, one at a time:
DISM /Online /Cleanup-Image /RestoreHealth sfc /scannow - Let each finish (DISM can take 10–20 minutes), then restart and reopen Windows Security.
Fix 4: Make sure the Security Center service is running
The app needs its service:
- Press Win + R, type
services.msc, press Enter. - Find Security Center (
wscsvc). Its Startup type should be Automatic (Delayed Start) and Status Running. If stopped, right-click → Start. - Also confirm Windows Defender Antivirus Service isn’t disabled. Restart and retry.
Fix 5: Check for a conflicting antivirus, then update Windows
- A third-party antivirus can hijack the Security dashboard so it won’t render. If you recently installed one and don’t need it, uninstall it, restart, and retry (see re-enable Defender after removing antivirus).
- Install all pending updates: Settings → Windows Update → Check for updates. A cumulative update frequently ships the fixed Windows Security package.
FAQ
Am I unprotected while the app won’t open? Usually not — the app is just the dashboard. Defender’s real-time protection often keeps running underneath. Confirm by running Get-MpComputerStatus in an admin terminal and checking that RealTimeProtectionEnabled is True.
Will Reset delete my exclusions or settings? Reset returns the app to defaults, so custom Windows Security preferences (like exclusions you added) may be cleared. Note any you’ve set before resetting so you can re-add them.
Nothing here worked. As a last resort, create a new local user account and open Windows Security there — if it works, the original user profile is corrupted. Otherwise an in-place repair install of Windows (keeping files and apps) rebuilds the system components.
Sources: Microsoft Support — Virus & threat protection in the Windows Security app, Microsoft Learn — Microsoft Defender Antivirus in the Windows Security app