Thank you for the reply,
Please proceed with troubleshooting, reinstall all MS apps:
Right-click Start > and select Powershell (admin) enter:
Get-AppxPackage -allusers | foreach {Add-AppxPackage -register "$($_.InstallLocation)\appxmanifest.xml" -DisableDevelopmentMode}
If that doesn’t work then check if doesn't have any corrupt files on the windows.
1-Right-Click on Start then click on Windows Terminal (admin)
2- Type these commands and hit enter Enter after each command:
sfc /scannow
Dism /Online /Cleanup-Image /ScanHealth
Dism /Online /Cleanup-Image /CheckHealth
3- The DISM tool will report whether the image is healthy, repairable, or non-repairable. If the image is repairable, you can use the /RestoreHealth argument to repair the image.
4-Type this command and press Enter:
Dism /Online /Cleanup-Image /RestoreHealth
If issue persist I would suggest you to follow these methods:
Method 1: Re-register Microsoft Store app for Current User
- Terminate the Microsoft Store app to make sure it's closed and not running.
- Open PowerShell
- Copy and paste the command below into PowerShell, and press Enter.
Get-AppXPackage *Microsoft.WindowsStore* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
- When finished, you can close PowerShell, and try opening the Microsoft Store app again ..
Method 2: Re-register Microsoft Store app for All Users
You must be signed in as an administrator to be able to do this option.
- Terminate the Microsoft Store app to make sure it's closed and not running.
- Open an elevated PowerShell
- Copy and paste the command below into the elevated PowerShell, and press Enter.
Get-AppXPackage *WindowsStore* -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
- When finished, close the elevated PowerShell,
- Restart the computer to apply.
- Try opening the Microsoft Store app again.
Please keep me posted on the results
Best Regard
Amr