1
0
mirror of https://github.com/TommyTran732/Windows-Setup.git synced 2024-09-16 08:24:51 -04:00

Fix Remove-AppxPackage

Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
Tommy 2023-11-06 03:59:40 -07:00
parent cf8b4aa1b1
commit eae1614ef6
No known key found for this signature in database
GPG Key ID: D30DEC268D3FEB17

View File

@ -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 <PackageName> -AllUsers | Remove-AppxPackage` to remove the unwanted packages.
- Run `Get-AppxPackage -AllUsers <PackageName> | Remove-AppxPackage -AllUsers` to remove the unwanted packages.
- Run `Get-AppxProvisionedPackage -Online <PackageName> | Remove-ProvisionedAppxPackage` to unprovision the packages.