mirror of
https://github.com/TommyTran732/Windows-Setup.git
synced 2024-11-09 09:41:46 -05:00
Fix search command
Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
parent
eae1614ef6
commit
e00b50b1b6
@ -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
|
- 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 <PackageName> | Remove-AppxPackage -AllUsers` 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.
|
- Run `Get-AppxProvisionedPackage -Online <PackageName> | Remove-ProvisionedAppxPackage` to unprovision the packages.
|
||||||
|
|
||||||
|
The list of packages I remove on my Parallels system is in the `Parallels.txt` file.
|
Loading…
Reference in New Issue
Block a user