I want to remotely execute commands on a machine from a host machine executing say a C#/C++/C type of application. The application is intended to control and execute the execution of commands on the remote machine. Is it possible to something like this by any means using any programming language??
I have checked about psexec etc, but I want more control, therefore thinking of doing it programatically "my way" :)
Regards Anand
Not sure about the type of commands you are looking for. Simply "invoke-command" should be able execute commands on local and remote computers.
If you are looking for customization to a great extend, you might need to develop agents (such as build agents used with CI) that can execute.