UWP: how to start an exe file that is located in specific directory?
问题 I am trying to start an exe that is located in C:/Program Files (x86)/App from UWP app. How can I do this. I can start exe file by using Windows Desktop extension for UWP, add Hide Copy Code <Extensions> <desktop:Extension Category="windows.fullTrustProcess" Executable="Assets\app.exe" /> </Extensions> to Package.appmanifest and call this await FullTrustProcessLauncher.LaunchFullTrustProcessForCurrentAppAsync(); in main class. But I need to add app.exe to Assets directory of project My