I'm working on creating an app that starts three other applications:
_proc1 = Process.Start(path)
then checks to make sure they are alive with a Timer object.
This works, so long as I know the absolute path. I can't seem to find out how to do this when the app is installed with an MSIX bundle. All four applications (the startup app, and 3 children applications) are bundled in the app.
I've attempted to Google search this problem away, but I can't seem to find the answer. Your time and expertise are very much appreciated!