You are on page 1of 1

Uninstall pre-installed Windows Store Apps in Windows

8.1/8
1. Firstly, you will have to open an elevated PowerShell prompt. Press Windows Key + Q, and in the
search box, type powershell. From results, pick the Windows PowerShell. Right-click on it, select Run
as administrator from bottom options.

2. In the Windows PowerShell window, type following command to enlist all the apps pre-installed
on your Windows 8.

Get-AppxPackage -AllUsers

Command to remove all the Modern Apps from your system account
3. Run the following command to remove all Windows Store Apps:

Get-AppXProvisionedPackage -online | Remove-AppxProvisionedPackage -online

4. If you’d like to remove all Modern Apps for the current account only, use following command:

Get-AppXPackage | Remove-AppxPackage

5. In case you want to remove all Modern Apps for a specific user then add the -User part in the above
command, so it is:

Get-AppXPackage -User | Remove-AppxPackage

6. Finally, let us know the command to remove all Modern Apps from all the accounts on your Windows

Get-AppxPackage -AllUsers | Remove-AppxPackage

You might also like