From e00b50b1b6e2bcee44e958d1cf8752d8c2f853cd Mon Sep 17 00:00:00 2001 From: Tommy Date: Mon, 6 Nov 2023 04:10:05 -0700 Subject: [PATCH] Fix search command Signed-off-by: Tommy --- Debloat/README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Debloat/README.md b/Debloat/README.md index d491ebb..99907cb 100644 --- a/Debloat/README.md +++ b/Debloat/README.md @@ -18,8 +18,10 @@ As such, if you want to make sure all of the annoying apps are gone, it is bette - Run the Windows Terminal as an Administrator -- 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`. +- 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 -AllUsers` to remove the unwanted packages. -- Run `Get-AppxProvisionedPackage -Online | Remove-ProvisionedAppxPackage` to unprovision the packages. \ No newline at end of file +- Run `Get-AppxProvisionedPackage -Online | Remove-ProvisionedAppxPackage` to unprovision the packages. + +The list of packages I remove on my Parallels system is in the `Parallels.txt` file. \ No newline at end of file