Explorar o código

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.
Justin Luth %!s(int64=6) %!d(string=hai) anos
pai
achega
2536d873f6
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      Windows10DebloaterGUIOLD.ps1

+ 1 - 1
Windows10DebloaterGUIOLD.ps1

@@ -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