diff --git a/hub/apps/desktop/modernize/grant-identity-to-nonpackaged-apps.md b/hub/apps/desktop/modernize/grant-identity-to-nonpackaged-apps.md index 3633b0dbaf..9784665314 100644 --- a/hub/apps/desktop/modernize/grant-identity-to-nonpackaged-apps.md +++ b/hub/apps/desktop/modernize/grant-identity-to-nonpackaged-apps.md @@ -119,7 +119,7 @@ After you create your package manifest, build the sparse package by using the [M The following example demonstrates how to create a sparse package from the command line. ```Console -MakeAppx.exe pack /d /p \MyPackage.msix /nv +MakeAppx.exe pack /d /p \MyPackage.msix /nv ``` Before your sparse package can be successfully installed on a target computer, you must sign it with a certificate that is trusted on the target computer. You can create a new self-signed certificate for development purposes and sign your sparse package using [SignTool](https://docs.microsoft.com/windows/msix/package/sign-app-package-using-signtool), which is available in the Windows SDK. @@ -127,7 +127,7 @@ Before your sparse package can be successfully installed on a target computer, y The following example demonstrates how to sign a sparse package from the command line. ```Console -SignTool.exe sign /fd SHA256 /a /f \MyCertificate.pfx /p \MyPackage.msix +SignTool.exe sign /fd SHA256 /a /f \MyCertificate.pfx /p \MyPackage.msix ``` ### Add the package identity metadata to your desktop application manifest