How can we uninstall/delete all the modern applications pre -installed from user account in Windows 8

Not all users Windows 8 they are delighted by Modern applications, and most likely they choose to uninstall those who come preinstalled cu the operating system, but uninstalling them using the usual methods only makes them disable, during which time they continue to occupy space. And when a created one is created new user account On that system, it will again have all Modern defaults active applications.

default-apps

If you count yourself among users who have not yet understood the purpose of modern applications, and want to get rid of those stuck in the sense that you want to completely delete from the system, then follow the instructions below.

How do we completely uninstall the modern pre -installed applications in Windows 8?

  • in Start Screen taste powershell, then click-right on the displayed result, namely Windows Powershell, and select from the options displayed at the bottom of the display Run as administrator
open-windows-powershell
  • in the window Windows Powershell Tab the following command to List all modern pre -installed applications in Windows 8

Get-AppxPackage –AllUsers

list-modern-apps
  • Then Tab the following command to Delete/uninstall all applications modern pre -installed

Get-AppXProvisionedPackage -online | Remove-AppxProvisionedPackage –online

And ready. Modern applications will be completely uninstalled, and they will not appear in the newly created users.

If you want to Uninstall modern applications pre -installed only for your user, or for Everything Uses Your Sistem, use the following commands:

  • Get-AppXPackage | Remove-AppxPackage   To uninstall applications in the current user
  • Get-AppXPackage -User <username> | Remove-AppxPackage    To uninstall modern pre-installed applications from a particular user accucent (where <username> Replace it with the name of the respective user)

And if you want to uninstall modern applications pre -installed in Windows 8 of All user accounts existing in the system, but you want them to be active if you create another user, the order is as follows:

Get-AppxPackage -AllUsers | Remove-AppxPackage

Succes!

STEALTH SETTINGS – How to remove all preinstalled modern apps from Windows 8 User Account

Passionate about technology, I write with pleasure on stealthsetts.com starting with 2006. I have a rich experience in operating systems: Macos, Windows and Linux, but also in programming languages ​​and blogging platforms (WordPress) and for online stores (WooCommerce, Magento, Presashop).

Home Your source of IT tutorials, useful tips and news. How can we uninstall/delete all the modern applications pre -installed from user account in Windows 8
Leave a Comment