First you have to run an elevated PowerShell (Run as Administrator)
To remove an app from your account - you can use the Remove-AppxPackage command. This method is the same as when you uninstalled an app from the Modern UI - they will come back when they are updated.
Use the Get-AppxPackage command to show the latest version of the installed apps (for all users)
Get-AppxPackage -AllUsers
When you create a new user on the system it will use a standard image as the base of the creation. You have to remove the apps from this image to get rid of all future updates of the preinstalled apps.
Use the Get-AppxProvisionedPackage command to show the apps in the image - the apps that will be installed for all new users
Get-AppXProvisionedPackage -online
Use the Remove-AppxProvisionedPackage command to remove an app from the image (for all users on the system).
Remove-AppXProvisionedPackage -online -PackageName <packagename>
This article is based on this link: How to Remove All Pre-Installed Windows 8 Metro Apps
If you regret and want to install them laiter then you can go to the Store and install them again.
Note: It'll take some minutes before the system finds out that the apps have been removed.
No comments:
Post a Comment