gpt4 book ai didi

c# - 在 UWP 中获取已安装的应用程序列表

转载 作者:行者123 更新时间:2023-11-30 15:22:04 31 4
gpt4 key购买 nike

我有一个应用程序需要读取用户移动设备上所有已安装应用程序的名称。但我不能那样做。如何获取 Windows 10 移动版通用 Windows 平台中已安装应用程序的列表?

谢谢你的帮助

最佳答案

您需要为 UWP 添加 Windows Mobile Extensions 并使用以下代码:

if (ApiInformation.IsTypePresent("Windows.Phone.Management.Deployment.InstallationManager"))
{
var packages = Windows.Phone.Management.Deployment.InstallationManager.FindPackages();
foreach (var package in packages)
{
Debug.WriteLine(package.DisplayName);
}
}

但此代码需要 ID_CAP_OEM_DEPLOYMENT。据我所知 msdn

I would assume that you would require a company certificate and would have to sign your Apps with that certificate in order for those permissions to work.

关于c# - 在 UWP 中获取已安装的应用程序列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36293051/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com