You click the Windows Security shield in your taskbar, nothing happens. You try from the Start menu, still nothing. Maybe it flashes for a second then vanishes. Whatever the exact flavour of the problem, Windows Security won't open is one of the most common Windows complaints I see every single week, and honestly, most of the advice floating around online is either outdated or just plain wrong. So here's what actually works, tested across dozens of real machines.
TL;DR
If Windows Security won't open, start by restarting the Security Center service in services.msc, then use Settings to Repair the app. If that fails, re-register the app via PowerShell and install pending Windows Updates. Persistent cases need DISM and SFC to fix underlying system file corruption. Works on both Windows 10 and Windows 11.
Key Takeaways
- Windows Security won't open is almost always caused by a stopped service, a corrupted app package, or system file damage.
- Restarting the Security Center service and using the built-in Repair option fixes the majority of cases in under ten minutes.
- Third-party antivirus software is a surprisingly common culprit. Temporarily disabling it is a quick way to test.
- If quick fixes fail, the PowerShell re-registration command is your next best move before going nuclear with DISM.
- DISM and SFC together fix deep OS-level corruption that nothing else can touch.
At a Glance
- Difficulty: Easy to Medium
- Time Required: 5 to 45 mins depending on tier
- Success Rate: 85% of users sorted within the first two tiers
What Causes Windows Security Won't Open?
Before throwing fixes at the wall, it helps to know what's actually going wrong under the hood. Windows Security won't open isn't one problem. It's several different problems that look identical from the outside. Here's what I see most often.
The single most common cause is a stopped or misconfigured Security Center service. Windows Security relies on a background service called wscsvc (the Windows Security Center service) to function. If that service has stopped, crashed, or been set to Manual startup instead of Automatic, the app just won't launch. No error message, no explanation. It either does nothing or opens briefly and closes. This is why restarting the service is always the first thing I try.
Second on the list is a corrupted app package. Windows Security is a UWP (Universal Windows Platform) app, which means it lives in a package store and can get corrupted just like any other installed app. A bad Windows Update, an interrupted installation, or even aggressive third-party cleanup tools can leave the package in a broken state. The app technically exists on your system but can't launch properly because key files are damaged or missing.
Third-party antivirus software causes more headaches than most people realise. Products like Norton, McAfee, Avast, and others sometimes conflict with Windows Security at the service level. They can register themselves as the active security provider and, in doing so, effectively sideline Windows Defender. Sometimes this is intentional (by design), but sometimes it leaves Windows Security in a broken half-state where it can't open at all. I've seen this happen after uninstalling a third-party antivirus too, where leftover registry entries confuse the system about which product is in charge. According to Microsoft's own documentation on the Windows Security app, only one real-time protection provider should be active at a time.
Finally, damaged Windows system files can break Windows Security even when the app package itself is fine. The component store that Windows relies on for core functionality can develop corruption over time, particularly after failed updates, sudden shutdowns, or disk errors. When this happens, the app repair tools won't fix it because the problem is deeper than the app itself.
One more thing worth mentioning: pending Windows Updates. Microsoft has shipped buggy updates in the past that broke Windows Security outright, and then fixed them in subsequent patches. If your machine is sitting on an old update, that might literally be the entire problem.
Windows Security Won't Open: Quick Fix (5 to 10 Minutes)
This is where I start with every single client. Nine times out of ten, one of these two steps sorts it. Don't skip ahead to the advanced stuff until you've tried this properly.
Restart the Service and Repair the App Easy
- Open the Services panel
PressWin + R, typeservices.mscand press Enter. The Services window will open with a list of every background service on your system. - Find and restart Security Center
Scroll down to Security Center (they're listed alphabetically). Right-click it and select Restart. If Restart is greyed out, the service is already stopped, so click Start instead. You should see a brief progress dialog as it restarts. - Check the startup type
While you're here, double-click Security Center and make sure Startup type is set to Automatic. If it says Manual or Disabled, change it to Automatic and click OK. - Repair the Windows Security app
Open Settings, go to Apps, then Installed apps (Windows 11) or Apps & features (Windows 10). Find Windows Security, click the three-dot menu or the app name, then Advanced options. Click Repair. - If Repair doesn't work, try Reset
Back in Advanced options, click Reset. This clears the app's local data and re-initialises it. You won't lose any Windows settings, but any custom notification preferences inside the app will go back to default. - Restart your PC and test
Reboot fully (not just sleep) and try opening Windows Security from the Start menu. If it opens, you're sorted.
I've had cases where this took three reboots before it stuck, particularly on machines that had been running without a restart for weeks. So if it doesn't work on the first try, restart again and give it another go before moving on.
More Windows Security Won't Open Solutions (15 to 30 Minutes)
Still not opening? Right. This tier covers third-party conflicts, missing updates, and a PowerShell command that re-registers the entire app package from scratch. This one has saved me more times than I can count.
Disable Third-Party Antivirus and Update Windows Easy
- Temporarily disable your third-party antivirus
Right-click the antivirus icon in your system tray and look for a Disable, Pause protection, or Turn off option. Most products let you disable real-time protection temporarily. If you're not sure how, check the antivirus vendor's support page. Some products (particularly older Norton or McAfee installs) need to be fully uninstalled to stop interfering. - Test Windows Security immediately
Before doing anything else, try opening Windows Security now. If it opens, your antivirus was the culprit. You can either leave it disabled and use Windows Defender, or reinstall the third-party product and accept that they'll share the machine (though running two real-time scanners simultaneously is generally a bad idea). - Install all pending Windows Updates
Go to Settings > Windows Update and click Check for updates. Install everything available, including optional updates. Restart when prompted. Microsoft has patched Windows Security app bugs multiple times through regular updates.
Re-register the App via PowerShell Medium
- Open PowerShell as Administrator
Click Start, type PowerShell, right-click Windows PowerShell and select Run as administrator. Click Yes on the UAC prompt. - Run the re-registration command
Type or paste the following exactly as written:Get-AppxPackage Microsoft.SecHealthUI -AllUsers | Reset-AppxPackage
Press Enter. You may see some output or it may complete silently. Both are normal. - Restart and test
Close PowerShell, restart your PC fully, and try opening Windows Security again.
The PowerShell command above essentially tells Windows to re-register the Windows Security app package for all users on the machine. It's different from the Reset option in Settings because it works at the package registration level rather than just clearing app data. If the app's registration in the Windows package store has gone wrong (which happens more than you'd think after botched updates), this is what fixes it. For context on how UWP app packages work under the hood, Microsoft's DISM technical reference gives a good overview of the component store these apps depend on.
If you're also dealing with other apps behaving oddly alongside Windows Security, that's a strong signal you've got broader system file corruption rather than just an app-level issue. In that case, the Windows Update troubleshooting guide might be worth a read too, since update failures and system file corruption often go hand in hand.
Advanced Windows Security Won't Open Fixes (30+ Minutes)
If you've reached this point, the problem is almost certainly at the OS level. Something in the Windows component store or protected system files is damaged, and no amount of app repairing or re-registering will fix that. You need DISM and SFC. These are proper Microsoft tools, not third-party stuff, and they're exactly what I run when remote support clients have exhausted the easier options.
Run DISM and SFC to Repair System Files Advanced
- Open Terminal or Command Prompt as Administrator
On Windows 11, right-click the Start button and select Terminal (Admin). On Windows 10, search for cmd, right-click Command Prompt and choose Run as administrator. - Run the DISM repair command
Type the following and press Enter:DISM /Online /Cleanup-Image /RestoreHealth
This scans the Windows component store and downloads replacement files from Windows Update to fix any corruption it finds. It can take anywhere from 10 to 45 minutes. Do not close the window or restart your PC while it runs. You'll see a percentage counter climbing slowly. That's normal. - Wait for DISM to complete fully
You need to see the message: The restore operation completed successfully. If you see errors instead, note them down. Occasional errors during DISM are sometimes fixable by running it again, or by pointing it at a local Windows image file instead of Windows Update. - Run SFC immediately after DISM
In the same elevated terminal, type:sfc /scannow
Press Enter. SFC (System File Checker) scans all protected Windows system files and replaces any that are corrupted or missing. According to Microsoft's official SFC documentation, it's important to run DISM first so SFC has a clean component store to pull replacement files from. - Restart and test Windows Security
Once SFC shows its completion message (either Windows Resource Protection did not find any integrity violations or Windows Resource Protection found corrupt files and successfully repaired them), restart your PC and try opening Windows Security.
Here's the thing: if DISM and SFC both complete without errors but Windows Security still won't open, you're in rare territory. At that point I'd look at whether a Windows reset (keeping personal files) makes sense. Go to Settings > System > Recovery > Reset this PC and choose Keep my files. It's not ideal but it's far less painful than a clean install, and it fixes pretty much everything short of hardware failure.
If you're also noticing other odd Windows behaviour alongside this, like the Settings app crashing or the Start menu being glitchy, check out our Windows 11 Start menu fix guide because those symptoms often share the same root cause as a broken Windows Security app.
If you've worked through all three tiers and Windows Security still won't open, our remote support technicians can connect to your PC and fix it directly, usually within 30 minutes. We deal with broken Windows Security apps daily and can run the advanced repairs for you without any risk of making things worse.
Get remote helpPreventing Windows Security Won't Open in Future
Most of the time, Windows Security won't open is avoidable. Here's what actually makes a difference, in order of importance.
Keep Windows Update current. This is the single biggest one. Microsoft patches Windows Security bugs through regular updates, and if you're sitting on a months-old update, you're potentially running a known-broken version of the app. Set Windows Update to install updates automatically, or at least check manually once a week. I know updates can be annoying, but a broken security app is worse.
Don't run two real-time antivirus products at the same time. Pick one. Either use Windows Defender (which is genuinely good these days, especially on Windows 11) or use a third-party product. Running both creates service conflicts that can leave Windows Security in exactly the broken state we've been fixing in this guide. If you want to compare options, AV-TEST's independent antivirus benchmarks are a solid reference for seeing how Windows Defender stacks up against paid alternatives.
Be careful with debloat tools and registry tweakers. There are a lot of scripts and tools floating around that claim to speed up Windows by removing built-in apps and tweaking system settings. Some of them are fine. Others will happily remove or break Windows Security components in ways that are genuinely difficult to undo. If you want to clean up your system, stick to well-known tools and read what they're actually doing before running them.
Reboot after major updates or security software changes. Sounds obvious, but a lot of people leave their PCs running for weeks without a proper restart. Services and app registrations need a clean boot to reload properly after updates. A quick reboot after installing a big Windows Update or changing your antivirus setup prevents a lot of the service conflicts that cause this problem.
And if you do start seeing other apps behaving oddly, don't ignore it. Run a quick DISM check before things get worse. It's much easier to repair a small amount of component store corruption than to deal with a fully broken system later. Our Windows performance troubleshooting guide covers some of the same DISM and SFC steps in a broader context if you want to do a general system health check.
Windows Security Won't Open: Summary
So to recap: Windows Security won't open is almost always one of five things. A stopped Security Center service, a corrupted app package, a third-party antivirus conflict, missing Windows Updates, or damaged system files. Work through the tiers in order. Start with the service restart and app repair (five minutes, fixes most cases). Move to the PowerShell re-registration if that fails. Then DISM and SFC if you're still stuck.
The good news is that none of these fixes are risky. You're not editing the registry, you're not deleting system files, and you're not doing anything that can't be undone. The worst case scenario from any of the steps above is that you end up in the same place you started, which means you haven't lost anything.
If you've tried everything here and Windows Security still won't open, get in touch with us at Vivid Repairs. Remote support for this kind of issue is usually sorted in under half an hour, and it's a lot less stressful than staring at a command prompt wondering if you've broken something.
Quick Reference: Fix Order
- Step 1: Restart Security Center service in services.msc, then Repair the app in Settings.
- Step 2: Disable third-party antivirus temporarily and install all Windows Updates.
- Step 3: Run
Get-AppxPackage Microsoft.SecHealthUI -AllUsers | Reset-AppxPackagein admin PowerShell. - Step 4: Run
DISM /Online /Cleanup-Image /RestoreHealththensfc /scannowin admin terminal. - Last resort: Windows reset (keep files) via Settings > System > Recovery.


