hey guys
just wondering how can i run process/kill process on remote machine using C# , I have found some solutions using PsExec but it didn't work.
or just something that will give me access to remote pc to its CMD
thanks.
hey guys
just wondering how can i run process/kill process on remote machine using C# , I have found some solutions using PsExec but it didn't work.
or just something that will give me access to remote pc to its CMD
thanks.
PsExec or remote PowerShell are two solutions if you really need to do this. There is no 'magic' way of executing commands on other machines. If PsExec does not work for you, I suggest creating a service (WCF of Windows Service) on the remote machine, and send commands to that service, then execute them locally on the remote machine.