Universal Windows Platform (UWP)
A Microsoft platform for building and publishing apps for Windows desktop devices.
2,525 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
I am trying to get a list of installed programs using PackageManager.FindPackages. Some of the App reported by the following API are not
visible in Apps & Features i.e Microsoft.XboxIdentityProvider, Microsoft.StorePurchaseApp. The packages are not Framework,Resource, Disabled, System.
Any reason why they are not showing in Apps & Features?
FindPackages/FindPackagesForUser both retreive StorePurchaseApp and XboxIdentityProvider. But both of them are not visible in Apps & Features. My question is why are they not visible in Apps & Features?
Both of them is internal native app, and they used to safety certificate and purchase. we could find them with FindPackages method, but it is not means that they should be displayed in the app list. And this is windows general problem, not a uwp development problem. Can you tell me why you want to find them in app list ?
Actually, My Goal here is to programatically retreive the exact same list of packages as seen in "Apps & Features".
Is there any method to Filter/Distinguish such internal packages (Microsoft.XboxIdentityProvider, Microsoft.StorePurchaseApp), as windows is doing, so that we get an exact list as "Apps & Features"?
There is no such api could filter internal package. You need to filter it manually. for example
if(package.Id.Name.Contains("XnoxIdentityProvider")){// remove it from list}
Sign in to comment