Below is what I did. I added Windows Desktop Extensions for the UWP I added 2 folders groubA & groubB in project's root directory then rename a.exe to app.exe and add to groupA folder, rename b.exe then add to groupB folder. In Package.appxmanifest: <pre><Applications> ... <Extensions> <desktop:Extension Category="windows.fullTrustProcess" Executable="app.exe"> <desktop:FullTrustProcess> <desktop:ParameterGroup GroupId="groupA" Parameters="/groupA"/> <desktop:ParameterGroup GroupId="groupB" Parameters="/groupB"/> </desktop:FullTrustProcess> </desktop:Extension> </Extensions> </Application> </Applications>
await FullTrustProcessLauncher.LaunchFullTrustProcessForCurrentAppAsync("groupA");
windows can not find ...\Appx\app.exe
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)