Problem:
I want to uninstall the Windows 10 version of OneNote
because I have real OneNote from Office.
Solution:
Use PowerShell to remove the default apps.
Explanation:
You can execute the Get-AppxPackage | Format-Wide in a
PowerShell window to display all the default applications. Once you locate the
item you want to delete you can use abbreviated names to remove them. Below I
list a few examples.
OneNote
Get-AppxPackage *OneNote* |
Remove-AppxPackage
3D
Get-AppxPackage *3d* |
Remove-AppxPackage
Camera
Get-AppxPackage *camera* |
Remove-AppxPackage
Mail and Calendar
Get-AppxPackage *communi* |
Remove-AppxPackage