Magnificent app for linux/unix users https://t.co/J7x3PGAaNI pic.twitter.com/sC4aMBiv8y
— nixCraft 🐧 (@nixcraft) August 19, 2017
Tag: PowerShell
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