Skip to main content

If you find same universal or provisioned apps are difficult to remove, try the GRID command in Powershell:

PowerShell Commands to Remove Apps in GridView Just

Just use Out-GridviewOut-Gridview to select which applications you want to remove.

Get-AppxPackage | Out-GridView -Passthru | Remove-AppXPackage

Get-AppxPackage | Out-GridView -Passthru | Remove-AppXPackage

Edit: Keep in mind the above only removed the apps for the current user. To remove the apps from the computer for all users, run the following:

Get-AppxProvisionedPackage -Online | Out-GridView -PassThru | Remove-AppxProvisionedPackage -Online

Get-AppxProvisionedPackage -Online | Out-GridView -PassThru | Remove-AppxProvisionedPackage -Online

This will display a grid of all installed apps. YouYou can SELECT the apps (highlight in blue) you want to remove from the displayed list and click OK. Reboot.   

(I found I could only delete a few apps at a time by repeating the above command and selecting a few each time I reran the command)

If you find same universal or provisioned apps are difficult to remove, try the GRID command in Powershell:

PowerShell Commands to Remove Apps in GridView Just use Out-Gridview to select which applications you want to remove.

Get-AppxPackage | Out-GridView -Passthru | Remove-AppXPackage

Edit: Keep in mind the above only removed the apps for the current user. To remove the apps from the computer for all users, run the following:

Get-AppxProvisionedPackage -Online | Out-GridView -PassThru | Remove-AppxProvisionedPackage -Online

This will display a grid of all installed apps. You can SELECT the apps (highlight in blue) you want to remove from the displayed list and click OK. Reboot.  (I found I could only delete a few apps at a time by repeating the above command and selecting a few each time I reran the command)

If you find same universal or provisioned apps are difficult to remove, try the GRID command in Powershell:

PowerShell Commands to Remove Apps in GridView

Just use Out-Gridview to select which applications you want to remove.

Get-AppxPackage | Out-GridView -Passthru | Remove-AppXPackage

Keep in mind the above only removed the apps for the current user. To remove the apps from the computer for all users, run the following:

Get-AppxProvisionedPackage -Online | Out-GridView -PassThru | Remove-AppxProvisionedPackage -Online

This will display a grid of all installed apps. You can SELECT the apps (highlight in blue) you want to remove from the displayed list and click OK. Reboot. 

(I found I could only delete a few apps at a time by repeating the above command and selecting a few each time I reran the command)

Source Link
bobkush
  • 390
  • 2
  • 11

If you find same universal or provisioned apps are difficult to remove, try the GRID command in Powershell:

PowerShell Commands to Remove Apps in GridView Just use Out-Gridview to select which applications you want to remove.

Get-AppxPackage | Out-GridView -Passthru | Remove-AppXPackage

Edit: Keep in mind the above only removed the apps for the current user. To remove the apps from the computer for all users, run the following:

Get-AppxProvisionedPackage -Online | Out-GridView -PassThru | Remove-AppxProvisionedPackage -Online

This will display a grid of all installed apps. You can SELECT the apps (highlight in blue) you want to remove from the displayed list and click OK. Reboot. (I found I could only delete a few apps at a time by repeating the above command and selecting a few each time I reran the command)