@@ -32,6 +32,7 @@ When you have the container definition .xml, you can use the following PowerShel
32
32
### PowerShell commands
33
33
34
34
#### Deploy a shared Package container definition
35
+
35
36
``` powershell
36
37
Add-AppSharedPackageContainer <path>
37
38
```
@@ -41,7 +42,8 @@ This command deploys the shared package container definiton for the particular u
41
42
| ---------| ---------|
42
43
| ForceApplicationShutdown | Closes all packages currently running in the Shared Package Container. |
43
44
44
- #### Remove a shared package container
45
+ #### Remove a shared package container
46
+
45
47
``` powershell
46
48
Remove-AppSharedPackageContainer -Name <name>
47
49
```
@@ -51,14 +53,42 @@ This command removes the shared package container definiton for the particular u
51
53
| ---------| ---------|
52
54
| ForceApplicationShutdown | Closes all packages in the Shared Package Container. |
53
55
54
- #### Get information on a shared package container
56
+ #### Get information on a shared package container
57
+
55
58
``` powershell
56
59
Get-AppSharedPackageContainer -Name <name>
57
60
```
58
61
This command gets information about the shared package container. In particular, it will show what packages are inside the shared package container.
59
62
60
- #### Reset shared package container
63
+ #### Reset shared package container
64
+
61
65
``` powershell
62
66
Reset-AppSharedPackageContainer -Name <name>
63
67
```
64
68
This command destroys all the application data of the container, including the virtual files and registry keys.
69
+
70
+ #### Deploy a provisioned package container
71
+
72
+ This command deploys a provisioned shared package container.
73
+
74
+ ``` powershell
75
+ Add-AppProvisionedSharedPackageContainer -DefinitionFile "<filepath>" -Online
76
+ ```
77
+
78
+ #### Verify that a provisioned package container is deployed
79
+
80
+ This command verifies that a provisioned shared package container is deployed
81
+
82
+ ``` powershell
83
+ Get-AppProvisionedSharedPackageContainer -Online
84
+ ```
85
+
86
+ #### Remove a provisioned package container
87
+
88
+ This command removes a provisioned shared package container
89
+
90
+ ``` powershell
91
+ Remove-AppProvisionedSharedPackageContainer -Name "<name>" -Online
92
+ ```
93
+
94
+
0 commit comments