remove-appxpackage: add page (#11162)

pull/23/head
Anurag Kumar 2023-10-22 23:38:26 +05:30 committed by GitHub
parent a30a7cfd06
commit c6a8d69715
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# remove-appxpackage
> A PowerShell utility to remove an app package from one or more user accounts.
> More information: <https://learn.microsoft.com/en-us/powershell/module/appx/remove-appxpackage>.
- Remove an app package:
`remove-appxpackage {{package}}`
- Remove an app package for a specific user:
`remove-appxpackage {{package}} -User {{username}}`
- Remove an app package for all users:
`remove-appxpackage {{package}} -AllUsers`
- Remove an app package but preserve it's app data:
`remove-appxpackage {{package}} -PreserveApplicationData`