Do you want to get rid of the default Windows Apps like I do?
Then follow these steps:
Click the start button in bottom left
Type: Windows PowerShell
Select: Run as administrator
Paste: Get-AppxPackage -AllUsers | Remove-AppxPackage
Press enter to uninstall the apps that ship with Windows 10This will also uninstall Microsoft Store. If you want to keep Microsoft Store then run the following Powershell command:
Get-AppXPackage *WindowsStore* -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}If you want to keep Windows Calculator then run the following Powershell command:
Get-AppxPackage *windowscalculator* -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}