I have packaged my windows App using a Visual Studio MSIX Packaging Project: This is a sideloading app, using a certificate, not a Microsoft Store App. This is fine - I get automatic updates, and users can install the package without admin rights.
I want to be able to open this app from another app. Before this was easy - just call Process.Start with the app path: "C:\Program Files\MyCompany\MyApp.exe"
However the Executable for an MSIX installed app is hidden I suspect its in "C:\Program Files\WindowsApps" but this folder is restricted and I can't get access even with admin permissions
There appears to be some data about the installation in C:\Users\MyUser\AppData\Local\Packages{myappguid} - but no executable files are available here.
So my question is simple: How can I launch an app from another program, when the app was installed using the MSIX application packager?