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.