您可使用来自 Windows.Phone.Management.Deployment 命名空间的 API 来肯定,来自您的发布者 ID 的其余应用是否安装在手机上。若是已经安装,您也可使用该 API 启动它们。为了演示,如下示例枚举当前发布者 ID 的全部应用,并在枚举中启动第一个应用(除非该应用刚好是当前应用)。windows
IEnumerable<Package> apps = Windows.Phone.Management.Deployment.InstallationManager.FindPackagesForCurrentPublisher(); apps.First().Launch(string.Empty);https://msdn.microsoft.com/library/windows/apps/jj207014.aspx