Hi everyone,
I am not very confortable with C# programming and I would need some help.
I would like to launch a process on a remote server.
I can do it locally as following, but how can I specify the server on which the process is and should be executed on?
Here is what I do (locally):
pInfo.FileName = @"C:\applicatio ns\my_app.exe";
ProcessStartInf o pInfo = new ProcessStartInf o();
Process p = new Process();
p.StartInfo = pInfo;
p.Start();
p.WaitForInputI dle();
Thanks for your help.
I am not very confortable with C# programming and I would need some help.
I would like to launch a process on a remote server.
I can do it locally as following, but how can I specify the server on which the process is and should be executed on?
Here is what I do (locally):
pInfo.FileName = @"C:\applicatio ns\my_app.exe";
ProcessStartInf o pInfo = new ProcessStartInf o();
Process p = new Process();
p.StartInfo = pInfo;
p.Start();
p.WaitForInputI dle();
Thanks for your help.
Comment