Best way to launch an application (with UI) on a remote machine??

  • Thread starter Thread starter Michael Howes
  • Start date Start date
M

Michael Howes

I have a c# windows form that talks to a web service on a server that then
can talk to multiple "agents" on different machines using web service calls.

I want to be able to launch an application of the users choice on the
remove, "agent" machine.

I've discovered that Process.Start() won't work because it runs under
asp.net and it will launch any "process" but if the application has a
windows UI it will not show.

any recommendations for the best way to launch applications on these agent
machines from my c#/windows forms app.
The agent can pass any needed info about the machine back to the client and
does already let the user browse around the machines directory/file
structure (it's how they choose the app to launch).

thanks

mike

PS remove the x from my domain if you'd like to reply to me directly. I am
still paying for the last time I posted to these newsgroups with over 100
spam a day about fake microsoft security updates. That #$%#^#$% sucks.
 
I am doing something similar and because of hte asp.net user this is what I
am doing.
I have a windows application (in my case is the system shell) but it can
also be a windows service (must click on allow service to interact with
desktop), anyways, my application has the capabilities of launching any
program and it has access to the GUI. So it publishes a object using
remoting, and the webpage uses remoting to talk to the application and tells
it to launch whatever it needs to launch, for my test I made my app launch
notepad and it worked fine.
 
Back
Top