Fix Windows Security Not Opening or Showing a Blank Screen in Windows 10/11
Difficulty: Intermediate | Time Required: 15 minutesWindows Security is the central dashboard for Microsoft Defender Antivirus, firewall status, app and browser protection, device security, and other built-in protection features. When it will not open, crashes immediately, or shows a blank white/gray window, you may be unable to review protection status or change security settings.
This guide walks you through the most common fixes for Windows 10 and Windows 11, starting with safe app repairs and moving into PowerShell, service checks, and system file repair.
Prerequisites
Before you begin:- Sign in with an administrator account.
- Save any open work.
- Make sure Windows is connected to the internet.
- If this is a work, school, or managed PC, be aware that some Windows Security pages may be hidden by policy.
Note: Windows Security is separate from Microsoft Defender Antivirus. A third-party antivirus can change Defender’s active/passive state, but the Windows Security app itself should still open and report security status.
Step 1: Restart Windows and Check for Updates
A stuck Windows Security process or pending update can cause a blank app window.- Right-click Start.
- Select Shut down or sign out.
- Choose Restart.
- After signing back in, open Settings.
- Go to:
- Windows 11: Settings > Windows Update
- Windows 10: Settings > Update & Security > Windows Update
- Select Check for updates.
- Install any available cumulative, Defender, or security intelligence updates.
- Restart again if prompted.
Step 2: Try Opening Windows Security from Settings
Sometimes the Start menu shortcut is broken, while the Settings entry still works.- Press Windows + I to open Settings.
- Go to:
- Windows 11: Privacy & security > Windows Security
- Windows 10: Update & Security > Windows Security
- Select Open Windows Security.
Step 3: Repair or Reset the Windows Security App
Windows Security is a built-in Windows app package. Repairing it attempts to fix the app without removing its data. Resetting it restores the app to a fresh state.On Windows 11
- Open Settings.
- Go to Apps > Installed apps.
- Search for Windows Security.
- Select the three-dot menu next to it.
- Choose Advanced options.
- Under Reset, select Repair.
- Try opening Windows Security again.
- If it still fails, return to the same page and select Reset.
- Confirm the reset when prompted.
On Windows 10
- Open Settings.
- Go to Apps > Apps & features.
- Search for Windows Security.
- Select it, then choose Advanced options.
- Select Repair first.
- Test Windows Security.
- If needed, return and select Reset.
Tip: Use Repair before Reset. Resetting an app can remove app-specific preferences and restore default behavior.
Step 4: Reset Windows Security Using PowerShell
If the Settings page is missing, broken, or does not fix the issue, reset the Windows Security package with PowerShell.- Right-click Start.
- Select Terminal (Admin), Windows PowerShell (Admin), or Command Prompt (Admin).
- If prompted by User Account Control, select Yes.
- Run this command:
Get-AppxPackage Microsoft.SecHealthUI -AllUsers | Reset-AppxPackage- Wait for the command to finish.
- Restart your PC.
- Try opening Windows Security again.
Code:
Get-AppxPackage Microsoft.SecHealthUI -AllUsers | ForEach-Object {
Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"
}
- Restart Windows once more.
Warning: Only run package commands from an elevated Windows terminal. Avoid downloading “Windows Security repair scripts” from unknown sites.
Step 5: Check Required Security Services
Windows Security relies on Windows security and health services to report current protection status.- Right-click Start.
- Select Terminal (Admin) or Windows PowerShell (Admin).
- Run:
Get-Service WinDefend, SecurityHealthService, wscsvc | Format-Table -Auto DisplayName, Name, StartType, StatusYou should generally see:
- Microsoft Defender Antivirus Service running, unless a third-party antivirus is managing protection.
- Windows Security Service available and not disabled.
- Security Center available and not disabled.
Code:
Start-Service SecurityHealthService
Start-Service wscsvc
Important: Do not manually disable or change core Windows Security services unless you are following a trusted enterprise management plan. Disabling these services can cause stale status, inaccurate warnings, or reduced protection reporting.
Step 6: Repair Windows System Files
If Windows Security still shows a blank screen, the app package or system components may be damaged. Run DISM first, then System File Checker.- Right-click Start.
- Select Terminal (Admin) or Command Prompt (Admin).
- Run:
DISM /Online /Cleanup-Image /RestoreHealth- Wait for the scan to complete. This may take several minutes.
- Next, run:
sfc /scannow- When the scan finishes, restart your PC.
- Open Windows Security again.
Tip: If SFC reports that it repaired files, always restart before testing again.
Step 7: Check Third-Party Antivirus or Management Policies
If you use Avast, Bitdefender, ESET, Malwarebytes Premium, Norton, Sophos, Trend Micro, or another security suite, Microsoft Defender Antivirus may be placed into a disabled or passive state. That is normal when another antivirus is active, but Windows Security should still open.Try the following:
- Open your third-party antivirus and check for updates.
- Restart Windows.
- If the issue began after installing or removing antivirus software, use the vendor’s official removal tool to clean up leftover components.
- Open Windows Security again.
- Open Settings > Accounts > Access work or school.
- Check whether the device is connected to an organization.
- If it is, some Windows Security areas may be hidden or controlled by policy.
- Contact your IT administrator before changing Defender or Windows Security settings.
Step 8: Test with a New User Profile
A corrupted user profile can cause built-in apps to open blank.- Open Settings.
- Go to:
- Windows 11: Accounts > Other users
- Windows 10: Accounts > Family & other users
- Add a new local user account.
- Temporarily make it an administrator.
- Sign out of your current account.
- Sign in to the new account.
- Try opening Windows Security.
Additional Troubleshooting Notes
- If only one section is blank, such as Virus & threat protection, check whether a third-party antivirus or organization policy is controlling that page.
- If Windows Security opens but shows outdated status, restart the PC and check Windows Update.
- If the app opens only after several minutes, check for heavy disk usage, pending updates, or security software conflicts.
- If none of the steps work, consider an in-place repair install of Windows 10 or Windows 11 while keeping personal files and apps.
Conclusion
A blank or non-opening Windows Security app is usually caused by a damaged app package, stuck security service, pending update, third-party antivirus conflict, or corrupted Windows system files. Starting with a simple restart and app repair is safest, while PowerShell reset, service checks, DISM, and SFC provide deeper repair options without immediately reinstalling Windows.Key Takeaways:
- Repair or reset Windows Security from Settings first.
- Use PowerShell to reset or re-register
Microsoft.SecHealthUIif Settings does not work. - Check that Windows Security-related services are not disabled.
- Run DISM and SFC to repair damaged Windows components.
- Consider antivirus conflicts, organization policies, or user profile corruption if the issue persists.
This tutorial was generated to help WindowsForum.com users get the most out of their Windows experience.