How to Remove Default Windows 10 Modern application you can't uninstall
Lets say I want to uninstall Maps. I cannot uninstall it its because it's grayed out
In order to remove the app we need to use Powersell.
1) Press on Start button and type "PowerShell".
2) Right Click "PowerShelll and select "Run as Administrator"
3) Type "get-appxpackge" ( This command will give you the list of Packages that installed on your system.
4) In order to filter the results type: "Get-AppxPakage | findstr Maps"
5:) we will need to copy PackageFullName Filed
6) In order to remove the package type "Remove-AppxPacjage -Package" and Paste the "PackageFullName" value, and press "Enter" and You are Done!