Forum Discussion
Asuka_Okami
Aug 06, 2021Brass Contributor
Issue with Windows Defender on Windows 11
I cannot open any of the settings on windows defender, when i try to it tells me to look for a compatible app in the Microsoft Store. Is this a bug or some other (fixable) issue?
- Aug 07, 2021I had this problem on all machines updated from 19043.1151 to 22000.120.
This command from elevated PowerShell fixed the problem for me, try it and report the results:
Get-AppxPackage Microsoft.SecHealthUI -AllUsers | Reset-AppxPackage
danielmira00
Oct 20, 2021Copper Contributor
try this from windows powershell as administrator:
Get-AppXPackage *Microsoft.SecHealthUI* -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
and then
Get-AppxPackage Microsoft.SecHealthUI -AllUsers | Reset-AppxPackage
- pisat_Jan 08, 2022Copper Contributorquotes was crux
- Marek5Nov 23, 2021Copper ContributorHello for me not working nothing, what you advised here.
Get-AppXPackage *Microsoft.SecHealthUI* -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"} make nothing
Get-AppxPackage Microsoft.SecHealthUI -AllUsers | Reset-AppxPackage make nohing
add-appxpackage -disabledevelopmentmode -register ((Get-AppxPackage Microsoft.SecHealthUI -allusers).InstallLocation + '\AppxManifest.xml') not found
Windows update not have update- AmalandonaFeb 09, 2022Copper Contributor
Marek5 Actually, I looked at the system apps folder, (C:\Windows\SystemApps) there the folder Microsoft.SecHealthUI Is not there.
When I looked there first when defender was working there was this folder.
pls don't tell me to REINSTALL WINDOWSSSS
look at the trim down.
- Jabber00Feb 13, 2022Copper Contributor
AmalandonaIt's exatly what happens on my system. I haven't still found a solution... And my Windows installation was a clean one. I tried with a restore too, but nothing changed.
- RafaBlogsOct 22, 2021Copper ContributorThanks! Using this worked!