Situatie
If the Microsoft Store not working correctly on your Windows 11 PC you can uninstall and reinstall it.
Solutie
Pasi de urmat
To start, access your PC’s “Start” menu and find “PowerShell”. Right-click the app and choose “Run as Administrator.” In the “User Account Control” prompt, select “Yes.”
On the PowerShell window, type the following command and press Enter:
Get-AppxPackage -allusers *WindowsStore* | Remove-AppxPackage
-allusers
means removing Store for all the users on your PC, WindowsStore
refers to Microsoft Store, and the Remove-AppxPackage
part tells PowerShell to remove the Store app.
When the command has finished running, close PowerShell. Then, reboot your PC by opening the “Start” menu, clicking the “Power” icon, and choosing “Restart”.
Reinstall Microsoft Store on Windows 11
Open the “Start” menu, find “PowerShell”, and click “Run as Administrator.” In the “User Account Control” prompt, click “Yes”.
In PowerShell, type the following command and press Enter:
Get-AppxPackage -AllUsers Microsoft.WindowsStore* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
When you’ve executed the command, restart your PC. You now have a new copy of Microsoft Store installed on your computer.
Leave A Comment?