run executable on remote machine

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • John Grandy

    run executable on remote machine

    I need to start an executable (such as a batch file) on a remote machine.

    System.Diagnost ics.Process.Sta rt() will not start a new process on a remote
    machine ...


  • Steve Walker

    #2
    Re: run executable on remote machine

    In message <u0q8Br3SFHA.11 52@tk2msftngp13 .phx.gbl>, John Grandy
    <johnagrandy-at-yahoo-dot-com@?.?.invalid > writes[color=blue]
    >I need to start an executable (such as a batch file) on a remote machine.
    >
    >System.Diagnos tics.Process.St art() will not start a new process on a remote
    >machine ...[/color]

    Write a listener to run on the remote machine and start the executable
    locally? Use WMI?

    --
    Steve Walker

    Comment

    • John Grandy

      #3
      Re: run executable on remote machine

      Hmmmm ... well, how does something like SMS or ActiveDirectory work ? How
      do they remotely invoke software installs ? (or are the installation
      processes actually run on the server and just manipulate the clients?)

      What is WMI? Windows Management Instrumentation ?


      "Steve Walker" <steve@otolith. demon.co.uk> wrote in message
      news:8DpZhKHz5K cCFwUw@otolith. demon.co.uk...[color=blue]
      > In message <u0q8Br3SFHA.11 52@tk2msftngp13 .phx.gbl>, John Grandy
      > <johnagrandy-at-yahoo-dot-com@?.?.invalid > writes[color=green]
      >>I need to start an executable (such as a batch file) on a remote machine.
      >>
      >>System.Diagno stics.Process.S tart() will not start a new process on a
      >>remote
      >>machine ...[/color]
      >
      > Write a listener to run on the remote machine and start the executable
      > locally? Use WMI?
      >
      > --
      > Steve Walker[/color]


      Comment

      • Steve Walker

        #4
        Re: run executable on remote machine

        In message <O081rmBTFHA.35 44@TK2MSFTNGP12 .phx.gbl>, John Grandy
        <johnagrandy-at-yahoo-dot-com@?.?.invalid > writes[color=blue]
        >
        >
        >"Steve Walker" <steve@otolith. demon.co.uk> wrote in message
        >news:8DpZhKHz5 KcCFwUw@otolith .demon.co.uk...[color=green]
        >> In message <u0q8Br3SFHA.11 52@tk2msftngp13 .phx.gbl>, John Grandy
        >> <johnagrandy-at-yahoo-dot-com@?.?.invalid > writes[color=darkred]
        >>>I need to start an executable (such as a batch file) on a remote machine.
        >>>
        >>>System.Diagn ostics.Process. Start() will not start a new process on a
        >>>remote
        >>>machine ...[/color]
        >>
        >> Write a listener to run on the remote machine and start the executable
        >> locally? Use WMI?[/color][/color]
        [color=blue]
        >Hmmmm ... well, how does something like SMS or ActiveDirectory work ? How
        >do they remotely invoke software installs ? (or are the installation
        >processes actually run on the server and just manipulate the clients?)[/color]

        Don't know, not my thing.
        [color=blue]
        >What is WMI? Windows Management Instrumentation ?[/color]

        Yep.


        ml/mngwmi.asp

        I've never really played with it, and it may have the same restrictions
        on launching executables remotely as the .NET classes, but it's worth a
        look.

        --
        Steve Walker

        Comment

        Working...