1.Press Windows + X keys on the keyboard, Open Command prompt (admin).
2.Execute this command :
PowerShell -ExecutionPolicy Unrestricted
It will open the PowerShell window.
3. Now executing below command should fix it
Get-AppXPackage -AllUsers |Where-Object {$_.InstallLocation -like "*SystemApps*"} | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
Se ajudar, marque a resposta como aceita