UWP run Exe file with Parameters
on UWP, I want to run a Exe file with parameter. Here is an example. process.exe filename.txt this Command line application process the text file and output a result file as Text. My Question is How to pass the parameter. I success to run Exe file on UWP, but the input full path for filename maybe wrong and failed. in ViewModels, await FullTrustProcessLauncher.LaunchFullTrustProcessForCurrentAppAsync("spectrum"); in Package.appxmanifest <Extensions> <desktop:Extension Category="windows.fullTrustProcess" Executable="Assets\identify\process.exe" > <desktop:FullTrustProcess> <desktop