jerryh91
jerryh91

Reputation: 1795

How to run .exe inside a Universal App in Win 10 in VS 2015?

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

Answers (1)

Peter Torr
Peter Torr

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

Related Questions