从桌面运行Windows应用商店应用

时间:2015-09-02 16:11:22

标签: c# windows windows-8 microsoft-metro windows-10

我正在尝试从Windows 10上的C#Windows窗体应用程序启动Windows应用商店应用程序。我尝试了一些方法(可能是?)适用于Windows 8但不适用于10。 我尝试如下:

Process.Start("explorer", @"shell:AppsFolder\AppUserModelId")

Process.Start(@"C:\Program Files (x86)\Windows Kits\10\App Certification Kit\Microsoft.Windows.SoftwareLogo.AppxLauncher.exe", "AppUserModelId");
or IApplicationActivationManager::ActivateApplication

这是有效的,但只能从命令行(告诉我使用AppUserModelId是正确的)。

任何人都知道有效的解决方案吗?

1 个答案:

答案 0 :(得分:0)

我发现这篇文章创建了商店应用的桌面快捷方式:http://winaero.com/blog/exclusive-how-to-start-a-modern-app-from-desktop-without-going-to-the-metro-start-screen/

很抱歉,除此之外我无能为力。