If your Microsoft Store app is not opening and has been deleted, you can try the following steps to reinstall it:
- Check if Microsoft Store is registered for your user account: Open a PowerShell prompt (not elevated) and run the command:
If it shows that Microsoft Store is not installed, you can try to re-register it.Get-AppxPackage *Microsoft.WindowsStore* - Re-register Microsoft Store: Run the following command in an elevated PowerShell prompt:
Make sure to replace the path with the correct one if necessary.Add-AppxPackage -Register -DisableDevelopmentMode "C:\Program Files\WindowsApps\Microsoft.WindowsStore_8wekyb3d8bbwe\AppxManifest.xml" - Use Windows Package Manager (winget): If you have
wingetinstalled, you can try to install Microsoft Store using:winget install Microsoft.Store - Reset Microsoft Store: If you manage to get it installed but it still doesn’t work, you can reset it using the command:
Reset-AppxPackage -Package Microsoft.WindowsStore - Check system settings: Ensure that your system settings allow for the installation of AppX packages.
If these steps do not resolve the issue, you may need to check for any system updates or consider reaching out to Microsoft support for further assistance.
References: