You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove the package with specified package full name.
45
45
46
46
```
47
-
-RemovePackage [Package name]
47
+
-RemovePackage <Package name>
48
48
```
49
49
50
50
or
51
51
52
52
```
53
-
-x [Package name]
53
+
-x <Package name>
54
54
```
55
55
56
56
Here's an example of using the `-RemovePackage` parameter. You can find the package full name by running the PowerShell cmdlet [Get-AppxPackage](/powershell/module/appx/get-appxpackage).
Here's an example of using the `-FindPackage` parameter. You can find the package full name by running the PowerShell cmdlet [Get-AppxPackage](/powershell/module/appx/get-appxpackage).
@@ -82,7 +82,7 @@ Apply ACLs to a package folder (an unpacked package). You also need to specify t
82
82
|`-packagePath`| The path to the package to unpack OR the path to a directory containing multiple packages to unpack |
83
83
84
84
```
85
-
-ApplyACLs -packagePath [Path to the package folder]
85
+
-ApplyACLs -packagePath <Path to the package folder>
86
86
```
87
87
88
88
Here's an example of using the `-ApplyACLs` parameter:
@@ -103,7 +103,7 @@ Unpack a package in one of the file formats `.appx`, `.msix`, `.appxbundle`, or
103
103
|`-rootDirectory`| Specifies root directory on image to unpack packages to. This parameter is only required when unpacking to new and existing CIM files. |
104
104
105
105
```
106
-
-Unpack -packagePath [Path to package to unpack OR path to a directory containing multiple packages to unpack] -destination [Directory to place the resulting package folder(s) in] -fileType [VHD | VHDX | CIM] -rootDirectory [Root directory on image to unpack packages to]
106
+
-Unpack -packagePath <Path to package to unpack OR path to a directory containing multiple packages to unpack> -destination <Directory to place the resulting package folder(s) in> -fileType <VHD | VHDX | CIM> -rootDirectory <Root directory on image to unpack packages to>
107
107
```
108
108
109
109
Here's some examples of using the `-Unpack` parameter:
@@ -147,7 +147,7 @@ Mount a VHD, VHDX, or CIM image. You also need to specify the following required
147
147
|`-imagePath`| The path to the image file to mount. |
148
148
149
149
```
150
-
-MountImage -imagePath [Path to the MSIX image] -fileType [VHD | VHDX | CIM]
150
+
-MountImage -imagePath <Path to the MSIX image> -fileType <VHD | VHDX | CIM>
151
151
```
152
152
153
153
Here's an example of using the `-MountImage` parameter:
@@ -172,7 +172,7 @@ Unmount a VHD, VHDX, or CIM image. You also need to specify the following requir
172
172
|`-imagePath`| The path to the image file to mount. |
173
173
174
174
```
175
-
-UnmountImage -imagePath [Path to the MSIX image] -fileType [VHD | VHDX | CIM]
175
+
-UnmountImage -imagePath <Path to the MSIX image> -fileType <VHD | VHDX | CIM>
176
176
```
177
177
178
178
Here's an example of using the `-UnmountImage` parameter:
0 commit comments