Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
For the motivations behind adding package identity, as well as the differences between building identity packages in Visual Studio and building them manually, see Overview.
This topic describes how to build and register an identity package manually. For info about building an identity package in Visual Studio, see Grant package identity by packaging with external location in Visual Studio.
These are the steps (which this topic describes in detail) to build and register an identity package manually:
- Create a package manifest for the identity package
- Build and sign the identity package
- Add identity metadata to your desktop application manifests
- Register the identity package in your installer
- Optional steps
Create a package manifest for the identity package
The first step to creating an identity package is to create a package manifest based on the below template. This is an MSIX manifest but is only used for identity and doesn't alter the app's runtime behavior.
<?xml version="1.0" encoding="utf-8"?>
<Package IgnorableNamespaces="uap uap10"
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
xmlns:uap10="http://schemas.microsoft.com/appx/manifest/uap/windows10/10"
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities">
<Identity Name="ContosoPhotoStore" Publisher="CN=Contoso" Version="1.0.0.0" ProcessorArchitecture="neutral" />
<Properties>
<DisplayName>Contoso PhotoStore</DisplayName>
<PublisherDisplayName>Contoso</PublisherDisplayName>
<Logo>Assets\storelogo.png</Logo>
<uap10:AllowExternalContent>true</uap10:AllowExternalContent>
</Properties>
<Resources>
<Resource Language="en-us" />
</Resources>
<Dependencies>
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.19041.0" MaxVersionTested="10.0.26100.0" />
</Dependencies>
<Capabilities>
<rescap:Capability Name="runFullTrust" />
<rescap:Capability Name="unvirtualizedResources"/>
</Capabilities>
<Applications>
<Application Id="ContosoPhotoStore" Executable="ContosoPhotoStore.exe" uap10:TrustLevel="mediumIL" uap10:RuntimeBehavior="win32App">
<uap:VisualElements AppListEntry="none" DisplayName="Contoso PhotoStore" Description="Contoso PhotoStore App" BackgroundColor="transparent" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" />
</Application>
</Applications>
</Package>
Note the below important details about this manifest:
- Fill in the
Identityelement attributes with the details of your applicationNameis the desired name of the identity packagePublishermust match theSubjectof the certificate used to sign the applicationVersionis the desired version of the identity package. A common practice is to align the identity package version with the application version. You will not be able to register a version of an identity package on a system if that version of the package is already registered. You must first unregister the existing package to reinstall a package with the same version.ProcessorArchitectureshould beneutralas shown so the identity package works across all architectures (x86, x64, and ARM64)
- Fill in the
DisplayNameandPublisherDisplayNameelements with the details of your application- Unless you add additional features to the manifest beyond simple identity, these values are not displayed anywhere
- Update the
Logoelement to a relative path within your application's installation directory that will resolve to a .png, .jpg, or .jpeg image - Ensure the
AllowExternalContentelement is set totrueas shown which enables reusing your existing installer - Set
TargetDeviceFamilyMinVersionandMaxVersionTestedper below:- Set
MinVersionto10.0.19041.0as shown for maximum reach and uniformity across Windows 10 and Windows 11 OS versions - Set
MinVersionto10.0.26100.0to restrict the identity package to Windows 11, version 24H2 and above - Set
MaxVersionTestedto10.0.26100.0as shown - Note: The
AllowExternalContentfeature used here was introduced in Windows build 10.0.19041.0. If your application runs further downlevel than that, you should perform an OS version check in your installer and not register the identity package on OS versions earlier than 10.0.19041.0. See Register the identity package in your installer.
- Set
- Ensure the
runFullTrustandunvirtualizedResourcescapabilities are declared as shown for Win32 compatibility - Add an
Applicationelement as shown for each executable associated with your application- Ensure
TrustLevelismediumILandRuntimeBehavioriswin32Appas shown for Win32 compatibility
- Ensure
- The
VisualElementschild element is required, but theAppListEntry="none"attribute ensures the identity package isn't shown among installed apps- Update the
DisplayNameandDescriptionattributes with relevant details and leave the other attributes as shown (the referenced image paths do not need to resolve) - See Localization and Visual Assets for scenarios where localization and images may be needed here.
- Update the
The identity package created from this manifest will be connected to your application's installation directory when you register the package in a later step.
Build and sign the identity package
After you create your identity package manifest, build the identity package using the MakeAppx.exe tool in the Windows SDK.
MakeAppx.exe pack /o /d <path to directory that contains manifest> /nv /p <output path>\MyPackage.msix
Note: The /nv flag is required to bypass validation of referenced file paths in the manifest.
In order to be installed on end user computers, the identity package must be signed with a certificate that is trusted on the target computer. You can create a new self-signed certificate for development purposes and sign your identity package using SignTool, which is available in the Windows SDK, but a production certificate from an IT Department or a service like Azure Trusted Signing will be required to register the package on end user computers.
SignTool.exe sign /fd SHA256 /a /f <path to certificate>\MyCertificate.pfx /p <certificate password> <path to package with external location>\MyPackage.msix
Note: For how to build and sign the identity package within a CI/CD pipeline with production certificates, see the MSIX and CI/CD Pipeline Overview for examples.
Add identity metadata to your desktop application manifests
You connect the identity package with your application executables by including application manifests (a.k.a side-by-side or fusion manifests) with metadata that matches metadata from the identity package manifest.
In Visual Studio, you can add an application manifest to an executable project by opening the Project context menu, and selecting Add > New Item > Application Manifest File.
Below is an example application manifest snippet demonstrating the msix element required
to connect your binaries with metadata from your identity package.
<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity version="0.0.0.0" name="ContosoPhotoStore"/>
<msix xmlns="urn:schemas-microsoft-com:msix.v1"
publisher="CN=Contoso"
packageName="ContosoPhotoStore"
applicationId="ContosoPhotoStore"
/>
</assembly>
The attributes of the msix element must match these values from the identity package manifest:
- The
packageNameandpublisherattributes must match theNameandPublisherattributes in theIdentityelement in your identity package manifest, respectively - The
applicationIdattribute must match theIdattribute of the correspondingApplicationelement in your identity package manifest
Register the identity package in your installer
The last step to associate identity with your application is to register the identity package in your installer and associate it with your application's installation directory.
PowerShell
Executing powershell.exe with the right parameters is the simplest way to register the package. The guidance differs for per-user installations vs. machine-wide installations.
Per-User (PowerShell)
To register the identity package during a per-user installation:
powershell.exe -NoLogo -NoProfile -NonInteractive -WindowStyle Hidden -ExecutionPolicy Bypass -Command "Add-AppxPackage -Path <PackagePath> -ExternalLocation <ExternalLocation>"
- Set
<PackagePath>to the absolute path of the signed identity package produced in the previous step (with the file name). - Set
<ExternalLocation>to the absolute path of your application's installation directory (without any executable names).
To unregister the identity package during a per-user uninstallation:
powershell.exe -NoLogo -NoProfile -NonInteractive -WindowStyle Hidden -ExecutionPolicy Bypass -Command "Get-AppxPackage <PackageName> | Remove-AppxPackage"
- Set
<PackageName>to the package name you defined in your identity package manifest (the Name attribute of the Identity element)
Per-Machine (PowerShell)
To register the identity package during a machine-wide installation:
powershell.exe -NoLogo -NoProfile -NonInteractive -WindowStyle Hidden -ExecutionPolicy Bypass -Command "Add-AppxPackage -Stage <PackagePath> -ExternalLocation <ExternalLocation>; Add-AppxProvisionedPackage -Online -PackagePath <PackagePath>"
- Set
<PackagePath>to the absolute path of the signed identity package produced in the previous step (with the file name). - Set
<ExternalLocation>to the absolute path of your application's installation directory (without any executable names).
To unregister the identity package during a machine-wide uninstallation:
powershell.exe -NoLogo -NoProfile -NonInteractive -WindowStyle Hidden -ExecutionPolicy Bypass -Command "$packages = Get-AppxPackage <PackageName>; foreach ($package in $packages) { Remove-AppxProvisionedPackage -PackageName $package.PackageFullName -Online }; foreach ($package in $packages) { Remove-AppxPackage -Package $package.PackageFullName -AllUsers }
- Set
<PackageName>to the package name you defined in your identity package manifest (the Name attribute of the Identity element)
PackageManager APIs
If you'd rather call OS APIs to register and unregister the identity package, the PackageManager API provides equivalent functionality to PowerShell. The guidance differs for per-user installations vs. machine-wide installations.
Below are snippets that demonstrate the API. For production-ready code in C# and C++, see Sample apps.
Per-User (PackageManager)
The code listing below demonstrates registering the identity package by using the AddPackageByUriAsync method and unregistering the identity package by using the RemovePackageAsync method.
using Windows.Management.Deployment;
...
// Register the identity package during install
var externalUri = new Uri(externalLocation);
var packageUri = new Uri(packagePath);
var packageManager = new PackageManager();
var options = new AddPackageOptions();
options.ExternalLocationUri = externalUri;
await packageManager.AddPackageByUriAsync(packageUri, options);
...
// Unregister the identity package during uninstall
var packageManager = new PackageManager();
var packages = packageManager.FindPackagesForUserWithPackageTypes("", "<IdentityPackageFamilyName>", PackageType.Main);
foreach (var package in packages)
{
await packageManager.RemovePackageAsync(package.Id.FamilyName);
}
Note the below important details about this code:
- Set
externalLocationto the absolute path of your application's installation directory (without any executable names) - Set
packagePathto the absolute path of the signed identity package produced in the previous step (with the file name) - The
<IdentityPackageFamilyName>can be found by running theGet-AppxPackage <IdentityPackageName>PowerShell command on a system where the identity package is registered. ThePackageFamilyNameproperty contains the value to use here.
Per-Machine (PackageManager)
The code listing below demonstrates registering the identity package by using the StagePackageByUriAsync and ProvisionPackageForAllUsersAsync methods and unregistering the identity package by using the DeprovisionPackageForAllUsersAsync and RemovePackageAsync methods.
// Register the identity package during install
var externalUri = new Uri(externalLocation);
var packageUri = new Uri(packagePath);
var packageManager = new PackageManager();
var options = new StagePackageOptions();
options.ExternalLocationUri = externalUri;
await packageManager.StagePackageByUriAsync(packageUri, options);
await packageManager.ProvisionPackageForAllUsersAsync(packageFamilyName);
...
// Unregister the identity package during uninstall
var packageManager = new PackageManager();
var packages = packageManager.FindPackagesForUserWithPackageTypes("", "<IdentityPackageFamilyName>", PackageType.Main);
foreach (var package in packages)
{
await packageManager.DeprovisionPackageForAllUsersAsync(package.Id.FamilyName);
await packageManager.RemovePackageAsync(package.Id.FamilyName, RemovalOptions.RemoveForAllUsers);
}
Note the below important details about this code:
- Set
externalLocationto the absolute path of your application's installation directory (without any executable names) - Set
packagePathto the absolute path of the signed identity package produced in the previous step (with the file name) - The
<IdentityPackageFamilyName>can be found by running theGet-AppxPackage <IdentityPackageName>PowerShell command on a system where the identity package is registered. ThePackageFamilyNameproperty contains the value to use here.
Sample apps
See the PackageWithExternalLocation samples for fully functional C# and C++ apps that demonstrate how to register and unregister an identity package.
Optional steps
Localization and Visual Assets
Some features that understand package identity might result in strings and images from your identity package manifest being displayed in the Windows OS. For example:
- An application that uses camera, microphone, or location APIs will have a dedicated control toggle in Windows Privacy Settings along with a brokered consent prompt that users can use to grant or deny access to those sensitive resources.
- An application that registers a share target will show up in the share dialog.
To localize the strings in the identity package manifest, see Localize the manifest.
When providing paths to images in the VisualElements attributes in the identity package manifest,
the provided paths should be relative paths within your application's installation directory that
will resolve to a .png, .jpg, or .jpeg image. The attribute names indicate the expected dimensions
of the images (150x150 and 40x40).
Windows developer