Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions msix-src/manage/shared-package-container.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
description: This guide explains MSIX Shared Package Container
title: MSIX Shared Package Container
ms.date: 03/17/2021
ms.date: 08/27/2026
ms.topic: article
keywords: windows 10, uwp, msix
---
Expand Down Expand Up @@ -29,7 +29,14 @@ Shared package contianer is defined by a .xml file. The container definition re
```
When you have the container definition .xml, you can use the following PowerShell commands to deploy, reset, update, and remove a Shared Package Container from the device. Note that all other app deployment commands remain the same (i.e installing packages)

### PowerShell commands
### PowerShell commands

For complete syntax, parameters, inputs, and outputs for the per-user commands, see the Appx module reference:

- [`Add-AppSharedPackageContainer`](/powershell/module/appx/add-appsharedpackagecontainer)
- [`Get-AppSharedPackageContainer`](/powershell/module/appx/get-appsharedpackagecontainer)
- [`Remove-AppSharedPackageContainer`](/powershell/module/appx/remove-appsharedpackagecontainer)
- [`Reset-AppSharedPackageContainer`](/powershell/module/appx/reset-appsharedpackagecontainer)

#### Deploy a shared Package container definition

Expand Down Expand Up @@ -90,5 +97,3 @@ This command removes a provisioned shared package container
```powershell
Remove-AppProvisionedSharedPackageContainer -Name "<name>" -Online
```