Saturday, January 23, 2016

Remove All Metro Apps via PowerShell in Windows 8

Remove all currently installed Metro Apps:

Get-AppxPackage -AllUsers | Remove-AppxPackage

If you wish to stop them from getting re-installed for the next new user:

Get-AppXProvisionedPackage -online | Remove-AppxProvisionedPackage –online

No comments: