I am trying to launch a Windows Store application from a C# Windows Forms App on Windows 10. I tried some approaches what (probably?) works on Windows 8 but don't work on 10. I tried as follows:
Process.Start("explorer", @"shell:AppsFolder\AppUserModelId")
or
Process.Start(@"C:\Program Files (x86)\Windows Kits\10\App Certification Kit\Microsoft.Windows.SoftwareLogo.AppxLauncher.exe", "AppUserModelId");
or IApplicationActivationManager::ActivateApplication
This works, but only from the command line (which tells me that using AppUserModelId is correct).
Anyone knows a working solution?