Other Configuration Manager-related features and issues
Hi,
User/AppManagement
For modern Windows apps, like Universal Windows Platform (UWP) apps, you can retrieve the Product ID or Package Family Name (PFN) from the app's manifest. Here's how to do it:
Open the App's Manifest:
- UWP apps have an "AppxManifest.xml" file that contains various details about the app, including the Package Family Name.
- This manifest file is located within the app's package. If you have the app package (an .appx or .appxbundle file), you can extract it using a tool like 7-Zip.
- Navigate to the extracted or installed app folder.
Find the Package Family Name (PFN):
- Open the "AppxManifest.xml" file in a text editor.
- Look for the
<Identity>element, which contains the Package Family Name (PFN). It might look like this:
<Identity Name="YourAppName" Publisher="CN=YourPublisherName" Version="1.0.0.0" ProcessorArchitecture="neutral" />
- The "Name" attribute within the
<Identity>element is the Package Family Name (PFN) for your UWP app.
The Package Family Name is a unique identifier for the UWP app on the Windows platform and can be used for various configuration and management tasks in an enterprise environment. Please note that the exact location of the manifest file may vary based on the app's structure, but it is typically found within the app's package. You can also access this information through PowerShell or programmatically if needed.