How-To Remove all bundled apps in Windows 10 with powershell

Remove all Modern apps from the system account

Get-AppXProvisionedPackage -online | Remove-AppxProvisionedPackage -online

Remove all Modern apps from your current user account

Get-AppXPackage | Remove-AppxPackage

Remove Metro apps for all user accounts

Get-AppxPackage -AllUsers | Remove-AppxPackage

via How to remove all bundled apps in Windows 10 – Winaero