windoes security does not open at all

Zaid Ahmed 0 Reputation points
2026-09-14T19:34:38.6433333+00:00

I want to check windows security, when i type in windows security and click open, it doesnt do anything at all, even if i tried from settings, its like the app doesnt even exist

Windows for home | Other | Security and privacy
0 comments No comments

2 answers

Sort by: Oldest
  1. CrazyKats 19,585 Reputation points Volunteer Moderator
    2026-09-14T20:16:55.0433333+00:00

    Hi Zaid,

    Per Copilot, try this:

    Quick Fix: Reinstall Windows Security via PowerShell

    This restores the Windows Security app (Microsoft.Windows.SecHealthUI).

    Open PowerShell as Administrator

    Run this command:

    Code

    Get-AppxPackage Microsoft.SecHealthUI -AllUsers | Reset-AppxPackage
    

    If your Windows version doesn’t support Reset-AppxPackage, use:

    Code

    Get-AppxPackage Microsoft.SecHealthUI -AllUsers | Foreach {
        Add-AppxPackage -Register "$($_.InstallLocation)\AppxManifest.xml" -DisableDevelopmentMode
    }
    

    This reinstalls the Windows Security interface.

    Was this answer helpful?

    0 comments No comments

  2. Lester Bernard Reyes 84,815 Reputation points Independent Advisor
    2026-09-14T20:19:51.33+00:00

    Hi, I'm Bernard. I'm happy to help!

    Based on your inputs, it seems that there are corrupted system files on the PC or in Windows Defender. To sort out the issue, kindly follow the steps below:

    Method 1. Repair Windows apps and Windows Defender:

    On Terminal(Admin), copy and paste the command below and hit enter:

    Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
    

    Restart the PC and check

    Method 2. Reinstall Windows Defender:

    Open the registry, then go to:

    HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender
    

    Then delete the Windows Defender folder, restart the PC, and recheck it.

    Note: If the issue persists, a system repair on the affected device might be necessary.

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.