views:

65

answers:

1

Hi experts,

I am using asp.net and c#.

I know it sounds weird and unusual but I have got a requirement like this: I want to know how I can run an exe or take some control of a user's computer. Please note that when I say user computer I mean only 2-3 computers on which I have admin privileges.

So, the complete requirement is that I have to control other computers for which I have admin user and password in asp.net.

Please tell me if it's possible to do this and if yes how.

Thanks in advance.

+1  A: 

One option would be to use Pstools.

despart
Seems like work for me but how to control pstool with asp.net ?
Rahul
Specifically you want to use psexec. You run that like anything else using the Process.Start method.
Kirk Woll