remove --allUsers packages after -online packages have been removed

There seems to be some kind of dependency. -AllUsers packages
remove better when they are the last things to be removed.
This commit is contained in:
Justin Luth 2019-05-30 14:15:01 +03:00
parent 78830e4676
commit 2536d873f6

View File

@ -539,9 +539,9 @@ $RemoveAllBloatware.Add_Click( {
Function DebloatAll {
#Removes AppxPackages
Get-AppxPackage -AllUsers | Where { !($_.Name -cmatch $global:WhiteListedAppsRegex) -and !($NonRemovables -cmatch $_.Name) } | Remove-AppxPackage
Get-AppxPackage | Where { !($_.Name -cmatch $global:WhiteListedAppsRegex) -and !($NonRemovables -cmatch $_.Name) } | Remove-AppxPackage
Get-AppxProvisionedPackage -Online | Where { !($_.DisplayName -cmatch $global:WhiteListedAppsRegex) -and !($NonRemovables -cmatch $_.DisplayName) } | Remove-AppxProvisionedPackage -Online
Get-AppxPackage -AllUsers | Where { !($_.Name -cmatch $global:WhiteListedAppsRegex) -and !($NonRemovables -cmatch $_.Name) } | Remove-AppxPackage
}
#Creates a PSDrive to be able to access the 'HKCR' tree