Remote Machine

  • Thread starter Thread starter brian
  • Start date Start date
B

brian

Is it possible to run an application from a remote
machine.

I want a user to click an EXE from there local machine
and it will run an application on our server.

Please lead me in the correct direction.

Thanks
 
You could write a service that listens on the remote
machine, and have the exe file just send a quick msg to
the service over a network stream, and when the service
get's that stream, have it launch ur app...
 
* "brian said:
Is it possible to run an application from a remote
machine.

I want a user to click an EXE from there local machine
and it will run an application on our server.

The common approach is to write a service application or an other
application listening for "commands" on the remote PC. Your application
sends commands to this application ("talks to this application").
 
Back
Top