Fix Windows Security Not Opening or Showing a Blank Screen in Windows 10/11

Fix Windows Security Not Opening or Showing a Blank Screen in Windows 10/11​

Difficulty: Intermediate | Time Required: 15 minutes
Windows 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:
  1. Sign in with an administrator account.
  2. Save any open work.
  3. Make sure Windows is connected to the internet.
  4. 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.
  1. Right-click Start.
  2. Select Shut down or sign out.
  3. Choose Restart.
  4. After signing back in, open Settings.
  5. Go to:
    • Windows 11: Settings > Windows Update
    • Windows 10: Settings > Update & Security > Windows Update
  6. Select Check for updates.
  7. Install any available cumulative, Defender, or security intelligence updates.
  8. Restart again if prompted.
After the restart, try opening Windows Security from the Start menu.

Step 2: Try Opening Windows Security from Settings​

Sometimes the Start menu shortcut is broken, while the Settings entry still works.
  1. Press Windows + I to open Settings.
  2. Go to:
    • Windows 11: Privacy & security > Windows Security
    • Windows 10: Update & Security > Windows Security
  3. Select Open Windows Security.
If Windows Security opens normally from here, the app itself may be fine and the issue may be limited to a shortcut or Start menu cache. If it still opens blank, continue below.

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​

  1. Open Settings.
  2. Go to Apps > Installed apps.
  3. Search for Windows Security.
  4. Select the three-dot menu next to it.
  5. Choose Advanced options.
  6. Under Reset, select Repair.
  7. Try opening Windows Security again.
  8. If it still fails, return to the same page and select Reset.
  9. Confirm the reset when prompted.

On Windows 10​

  1. Open Settings.
  2. Go to Apps > Apps & features.
  3. Search for Windows Security.
  4. Select it, then choose Advanced options.
  5. Select Repair first.
  6. Test Windows Security.
  7. 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.
  1. Right-click Start.
  2. Select Terminal (Admin), Windows PowerShell (Admin), or Command Prompt (Admin).
  3. If prompted by User Account Control, select Yes.
  4. Run this command:
Get-AppxPackage Microsoft.SecHealthUI -AllUsers | Reset-AppxPackage
  1. Wait for the command to finish.
  2. Restart your PC.
  3. Try opening Windows Security again.
If the command returns an error or does not find the package, try re-registering the app package:
Code:
Get-AppxPackage Microsoft.SecHealthUI -AllUsers | ForEach-Object {
    Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"
}
  1. 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.
  1. Right-click Start.
  2. Select Terminal (Admin) or Windows PowerShell (Admin).
  3. Run:
Get-Service WinDefend, SecurityHealthService, wscsvc | Format-Table -Auto DisplayName, Name, StartType, Status
You 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.
If a service is stopped, try starting it:
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.
  1. Right-click Start.
  2. Select Terminal (Admin) or Command Prompt (Admin).
  3. Run:
DISM /Online /Cleanup-Image /RestoreHealth
  1. Wait for the scan to complete. This may take several minutes.
  2. Next, run:
sfc /scannow
  1. When the scan finishes, restart your PC.
  2. 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:
  1. Open your third-party antivirus and check for updates.
  2. Restart Windows.
  3. If the issue began after installing or removing antivirus software, use the vendor’s official removal tool to clean up leftover components.
  4. Open Windows Security again.
For managed PCs:
  1. Open Settings > Accounts > Access work or school.
  2. Check whether the device is connected to an organization.
  3. If it is, some Windows Security areas may be hidden or controlled by policy.
  4. 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.
  1. Open Settings.
  2. Go to:
    • Windows 11: Accounts > Other users
    • Windows 10: Accounts > Family & other users
  3. Add a new local user account.
  4. Temporarily make it an administrator.
  5. Sign out of your current account.
  6. Sign in to the new account.
  7. Try opening Windows Security.
If Windows Security works in the new profile, your original Windows profile may have damaged app settings or user-specific package data.

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.SecHealthUI if 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.
 

Back
Top