From eae1614ef6e1a95f862888a73c519fab840542a9 Mon Sep 17 00:00:00 2001 From: Tommy Date: Mon, 6 Nov 2023 03:59:40 -0700 Subject: [PATCH] Fix Remove-AppxPackage Signed-off-by: Tommy --- Debloat/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Debloat/README.md b/Debloat/README.md index 47d6d7b..d491ebb 100644 --- a/Debloat/README.md +++ b/Debloat/README.md @@ -20,6 +20,6 @@ As such, if you want to make sure all of the annoying apps are gone, it is bette - To get a list of packages that can be removed, run `Get-AppxPackage -AllUsers | where {$.NonRemovable -eq $false} | where {$.isFramework -eq $false} | select Name,PackageFullName`. -- Run `Get-AppxPackage -AllUsers | Remove-AppxPackage` to remove the unwanted packages. +- Run `Get-AppxPackage -AllUsers | Remove-AppxPackage -AllUsers` to remove the unwanted packages. - Run `Get-AppxProvisionedPackage -Online | Remove-ProvisionedAppxPackage` to unprovision the packages. \ No newline at end of file