Reputation: 1795
I know that System.Diagnostics.Process is not available in Universal App. How do we start a locally stored .exe from an Universal App running in VS 2015?
Upvotes: 1
Views: 423
Reputation: 12019
You cannot run an arbitrary executable directly; you need to use Windows.System.Launcher
to launch via registered URI scheme or file type.
Upvotes: 1