1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/windows/remove-appxpackage.md

21 lines
538 B
Markdown
Raw Normal View History

# Remove-AppxPackage
2023-10-22 23:38:26 +05:30
> A PowerShell utility to remove an app package from user accounts.
> More information: <https://learn.microsoft.com/powershell/module/appx/Remove-AppxPackage>.
2023-10-22 23:38:26 +05:30
- Remove an app package:
`Remove-AppxPackage {{package}}`
2023-10-22 23:38:26 +05:30
- Remove an app package for a specific user:
`Remove-AppxPackage {{package}} -User {{username}}`
2023-10-22 23:38:26 +05:30
- Remove an app package for all users:
`Remove-AppxPackage {{package}} -AllUsers`
2023-10-22 23:38:26 +05:30
- Remove an app package but preserve it's app data:
`Remove-AppxPackage {{package}} -PreserveApplicationData`