AudioCircle

Community => Non-audio hobbies and interests => The IT Crowd => Topic started by: FullRangeMan on 29 Dec 2017, 06:47 am

Title: How Delete All W10 Apps at Once
Post by: FullRangeMan 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.
Title: How Reinstall Full W10 Apps Package
Post by: FullRangeMan 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
Title: Re: How Reinstall Full W10 Apps Package
Post by: srb 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.