Hi
I’m calling the method of a component within an expression shape of my orchestration.
I want the C# code within my component to run an external program, so I am using:
System.Diagnostics.Process.Start()
From my expression shape I am calling the method that contains the above code:
ComponentName.ComponentClass.ComponentMethod()
Can anyone tell me what I should be passing into the Start method as a parameter?
If I want to run an external program called \”DoStuff.exe\” would my C# code look like this? :
System.Diagnostics.Process.Start(\”DoStuff.exe\”)
Do I have to specify the exact path of the program or have to pass in any other arguments?
Any help is appreciated.
Cheers