How to Completely Remove Windows Store – Windows 11
I am going to show you how to easily remove Windows Store from Windows 11 using PowerShell. From the Powershell you are able to remove apps not located in programs and feature.
1. Click on Start and type powershell once you see it on the result right click on it and select Run as administrator.
2. In powershell we first need to get a list of all apps, to do that you need to type Get-AppxPackage -AllUsers then press Enter.
3. Then scroll down until you see “Microsoft.WindowsStore”. Using the mouse cursor highlight to select the Package full name and press CTRL+C to copy it.
4. Type: remove-appxpackage
NOTE: If you want to remove all the default apps at all users at once just type in Get-AppxPackage -AllUsers | Remove-AppxPackage.
If you want to remove all the default apps and also all the apps installed from windows store at once type Get-AppxPackage -User | Remove-AppxPackage (replace User with your username)
Video Tutoral:
0 Comments
Thanks for Your Comment