Start a process on a remote server

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sandydee
    New Member
    • Apr 2007
    • 2

    Start a process on a remote server

    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.
  • channaJ
    New Member
    • Mar 2007
    • 67

    #2
    Originally posted by sandydee
    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.
    This link may be helpfull

    Comment

    • sandydee
      New Member
      • Apr 2007
      • 2

      #3
      Originally posted by channaJ
      Yes it is :-)
      thank you !!!!!!!

      Comment

      Working...