How Delete All W10 Apps at Once

0 Members and 1 Guest are viewing this topic. Read 2330 times.

FullRangeMan

  • Volunteer
  • Posts: 19851
  • To whom more was given more will be required.
    • Never go to a psychiatrist, adopt a straycat or dog. On the street they live only two years average.
How Delete All W10 Apps at Once
« on: 29 Dec 2017, 06:47 am »
In the Power Shell type:
Get-AppxPackage * * | Remove-AppxPackage

After it you will get :duh:
System Restore Error 0x80070005
Or:
Get-AppxPackage : Access is denied.

FullRangeMan

  • Volunteer
  • Posts: 19851
  • To whom more was given more will be required.
    • Never go to a psychiatrist, adopt a straycat or dog. On the street they live only two years average.
How Reinstall Full W10 Apps Package
« Reply #1 on: 29 Dec 2017, 07:17 pm »
Well after a mistake I deletad all the W10 apps.
To reinstall the full W10 apps package type in the Power Shell as adm:
Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

To see all the apps installed type in the Power Shell:
Get-AppXPackage -AllUsers

srb

Re: How Reinstall Full W10 Apps Package
« Reply #2 on: 29 Dec 2017, 08:11 pm »
The whole idea of uninstalling W10 apps was a solution looking for a problem that didn't exist.