in iPaaS how do I call an Executable file on the proxy server from a flow

I need to be able to in iPaaS call an Executable file on the proxy server from a flow. Could you please provide an example?

Tags flow iPaaS Executable
Asked by Will Tonkin on Fri 9/8/23 1:23 PM Last edited Fri 9/8/23 1:31 PM
Sign In to leave feedback or contribute an answer

Answer (1)

This answer has been marked as the accepted answer
Will Tonkin Fri 9/8/23 2:13 PM

I did find this method to work, but not sure it is the only way.

I used a PowerShell Connector with the following code:

Invoke-Command -ScriptBlock {
Start-Process -FilePath "<path to executable on proxy server>"}

No feedback