Start a Exe Process on a Remote PC

  • Thread starter Thread starter MSN
  • Start date Start date
I think there is no such thing out of the box.
what you have to do is connect to a serveur on the remote computer which enables you to do such thing.
usually you write a whatever service which you install on the target computers, then you could send a message either with the ServiceController (very simple int base message) or use a some communication protocol.
How can one launch a exe on a remote PC using CSharp ?
 
One possibility is through System.Management and WMI.
Note that this might be tricky security wise and it depends on what kind of application you have to start.
Starting interactive applications remotely is in general not possible nor advisable.

Willy.

How can one launch a exe on a remote PC using CSharp ?
 
Back
Top