Get installed application list in UWP
问题 I have an application that needs to reads name of all installed app on user mobile. but i can't do that. How can i get list of installed applications in Universal Windows Platform on windows 10 mobile? thanks for your helping 回答1: You need to add Windows Mobile Extensions for the UWP and use the following code: if (ApiInformation.IsTypePresent("Windows.Phone.Management.Deployment.InstallationManager")) { var packages = Windows.Phone.Management.Deployment.InstallationManager.FindPackages();