Skip to content

Commit ab932e9

Browse files
committed
Updating based on feedback.
1 parent 6069004 commit ab932e9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/virtual-desktop/app-attach.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,17 +170,17 @@ Your MSIX package is now ready to be registered.
170170

171171
To register your MSIX package, run the following PowerShell cmdlets with the placeholder values replaced with values that apply to your environment.
172172

173+
The `$msixPackageFullName` parameter should be the full name of the package from the previous section, but the format should be similar to the following example: `Publisher.Application_version_Platform__HashCode`.
174+
175+
If you didn't retrieve the parameter after staging your app, you can also find it as the folder name for the app itself in **C:\Program Files\WindowsApps**.
176+
173177
```powershell
174178
$msixPackageFullName = "<package full name>"
175179
176180
$manifestPath = Join-Path (Join-Path $Env:ProgramFiles 'WindowsApps') (Join-Path $msixPackageFullName AppxManifest.xml)
177181
Add-AppxPackage -Path $manifestPath -DisableDevelopmentMode -Register
178182
```
179183

180-
The `$msixPackageFullName` parameter should be the full name of the package from the previous section, but the format should be similar to the following example: `Publisher.Application_version_Platform__HashCode`.
181-
182-
If you didn't retrieve the parameter after staging your app, you can also find it as the folder name for the app itself in **C:\Program Files\WindowsApps**.
183-
184184
Now that your MSIX package is registered, your application should be available for use in your session. You can now open the application for testing and troubleshooting.
185185

186186
## Deregister the MSIX package

0 commit comments

Comments
 (0)