Skip to content

Commit 0399a86

Browse files
Merge pull request #261224 from dknappettmsft/patch-1
AVD msixmgr tool formatting update
2 parents 811a20e + 77cd090 commit 0399a86

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/virtual-desktop/msixmgr-tool-syntax-description.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ Before you can follow the instructions in this article, you need:
2424
Add the package at specified file path.
2525

2626
```
27-
-AddPackage [Path to the MSIX package]
27+
-AddPackage <Path to the MSIX package>
2828
```
2929

3030
or
3131

3232
```
33-
-p [Path to the MSIX package]
33+
-p <Path to the MSIX package>
3434
```
3535

3636
Here's an example of using the `-AddPackage` parameter:
@@ -44,13 +44,13 @@ msixmgr.exe -AddPackage "C:\MSIX\myapp.msix"
4444
Remove the package with specified package full name.
4545

4646
```
47-
-RemovePackage [Package name]
47+
-RemovePackage <Package name>
4848
```
4949

5050
or
5151

5252
```
53-
-x [Package name]
53+
-x <Package name>
5454
```
5555

5656
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).
@@ -64,7 +64,7 @@ msixmgr.exe -RemovePackage myapp_0.0.0.1_x64__8wekyb3d8bbwe
6464
Find a package with specific package full name.
6565

6666
```
67-
-FindPackage [Package name]
67+
-FindPackage <Package name>
6868
```
6969

7070
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
8282
| `-packagePath` | The path to the package to unpack OR the path to a directory containing multiple packages to unpack |
8383

8484
```
85-
-ApplyACLs -packagePath [Path to the package folder]
85+
-ApplyACLs -packagePath <Path to the package folder>
8686
```
8787

8888
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
103103
| `-rootDirectory` | Specifies root directory on image to unpack packages to. This parameter is only required when unpacking to new and existing CIM files. |
104104

105105
```
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>
107107
```
108108

109109
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
147147
| `-imagePath` | The path to the image file to mount. |
148148

149149
```
150-
-MountImage -imagePath [Path to the MSIX image] -fileType [VHD | VHDX | CIM]
150+
-MountImage -imagePath <Path to the MSIX image> -fileType <VHD | VHDX | CIM>
151151
```
152152

153153
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
172172
| `-imagePath` | The path to the image file to mount. |
173173

174174
```
175-
-UnmountImage -imagePath [Path to the MSIX image] -fileType [VHD | VHDX | CIM]
175+
-UnmountImage -imagePath <Path to the MSIX image> -fileType <VHD | VHDX | CIM>
176176
```
177177

178178
Here's an example of using the `-UnmountImage` parameter:

0 commit comments

Comments
 (0)