How to uninstall microsoft store from windows 10?
To uninstall Microsoft Store from Windows 10, you can use PowerShell.
Steps:
- Press the Windows key and type
powershell
. - Right-click on Windows PowerShell and select Run as administrator.
- Click Yes if prompted by UAC.
- In the PowerShell window, type the following command and press Enter:
Get-AppxPackage *windowsstore* | Remove-AppxPackage
- You will see a momentary progress bar, and the cursor will move to the next line upon successful execution.
- Close the PowerShell window.
Note: You cannot uninstall Microsoft Store from the Settings app or Control Panel.
Reinstall Microsoft Store:
If you need to reinstall Microsoft Store, you can do so using the following command:
Get-AppXPackage WindowsStore –AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
This command will reinstall Microsoft Store for all users on your computer.
Warning: Uninstalling Microsoft Store can cause problems with other apps on your computer, such as Windows Update. It is recommended that you only uninstall Microsoft Store if you are having problems with it.