Added the following link and dedicated a whole chapter to it
https://windowsloop.com/uninstall-microsoft-store-apps/Copy pasta:
Open the PowerShell as an admin and execute the command relevant to the store app you want to uninstall.
1. Uninstall Get Office or Office Hub app.
Get-AppxPackage *officehub* | Remove-AppxPackage
2. Uninstall the 3D Builder app.
Get-AppxPackage *3dbuilder* | Remove-AppxPackage
3. Uninstall the Calculator app.
Get-AppxPackage *windowscalculator* | Remove-AppxPackage
4. Uninstall Calendar and Mail app.
Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage
5. Uninstall the Alarm and Clock app (removing this app won’t affect your taskbar or Windows clock).
Get-AppxPackage *windowsalarms* | Remove-AppxPackage
6. Uninstall the Camera app.
Get-AppxPackage *windowscamera* | Remove-AppxPackage
7. Uninstall the Get Started app.
Get-AppxPackage *getstarted* | Remove-AppxPackage
8. Uninstall the Skype app.
Get-AppxPackage *skypeapp* | Remove-AppxPackage
9. Uninstall the Solitaire game.
Get-AppxPackage *solitairecollection* | Remove-AppxPackage
10. Uninstall the Bing maps app.
Get-AppxPackage *windowsmaps* | Remove-AppxPackage
11. Uninstall Movies and TV app.
Get-AppxPackage *zunevideo* | Remove-AppxPackage
12. Uninstall the Money app.
Get-AppxPackage *bingfinance* | Remove-AppxPackage
13. Uninstall the Photos app.
Get-AppxPackage *photos* | Remove-AppxPackage
14. Uninstall the News app.
Get-AppxPackage *bingnews* | Remove-AppxPackage
15. Uninstall the OneNote app.
Get-AppxPackage *onenote* | Remove-AppxPackage
16. Uninstall the Weather app.
Get-AppxPackage *bingweather* | Remove-AppxPackage
17. Uninstall Microsoft Store (only do this if you know what you are doing). Instructions to Reinstall Microsoft store app.
Get-AppxPackage *windowsstore* | Remove-AppxPackage
18. Uninstall Xbox app.
Get-AppxPackage *xboxapp* | Remove-AppxPackage
19. Uninstall Voice Recorder app.
Get-AppxPackage *soundrecorder* | Remove-AppxPackage
20. Uninstall the Get Help app (this app is used to get direct support from Microsoft).
Get-AppxPackage *help* | Remove-AppxPackage
21. Uninstall the Paint 3D app.
Get-AppxPackage *mspaint* | Remove-AppxPackage
22. Uninstall the Messaging app.
Get-AppxPackage *messaging* | Remove-AppxPackage
23. Uninstall Print 3D app.
Get-AppxPackage *print3d* | Remove-AppxPackage
24. Uninstall People App.
Get-AppxPackage *Microsoft.people* | Remove-AppxPackage
25. Uninstall Groove Music (thanks to Benjamin for the suggestion)
Get-AppxPackage *ZuneMusic* | Remove-AppxPackage
Command explanation
The command itself is pretty simple. First, we get the app package details with the Get-AppxPackage cmdlet. Then, we use those package details to uninstall the store app with the Remove-AppxPackage cmdlet.
Uninstall all Microsoft store apps at once
If you want to uninstall all store apps at once, use the PowerShell command below
Step 1: Open the PowerShell app as admin. To do that, search for “PowerShell” in the Start menu, right-click on the search result, and select the “Run as administrator” option.
Open powershell as admin
Step 2: Execute the below command in the PowerShell window. To do that, copy the command, right-click inside the PowerShell window, and press Enter.
Get-AppxPackage -AllUsers | Remove-AppxPackage
As soon as you execute the command, Windows will scan the system and uninstalls all Microsoft store apps. Of course, some system apps like Cortana, Microsoft Store, etc., and user-installed store apps will not be uninstalled with this command.
One thing to keep in mind while using this command is that it will uninstall the store apps for all users.
TIP: to restore the default Windows Photoviewer with Powershell, go to
https://www.winhelponline.com/blog/reinstall-photos-app-windows-10/