What is the best working way to call a win32 executable from JavaScript UWP app (Windows Anniversary update)
I have tried to configure the win32 via an AppService:
<uap:Extension Category="windows.appService" StartPage="www\index.html">
<uap:AppService Name="CommunicationService" />
</uap:Extension>
<desktop:Extension Category="windows.fullTrustProcess" Executable="mywin32app.exe" EntryPoint="Windows.FullTrustApplication" />
Now I can launch it with Windows.ApplicationModel.FullTrustProcessLauncher.launchFullTrustProcessForCurrentAppAsync() from JavaScript, but how do I launch It with parameters?