I have a set of commands like:
C:
cd Project
testproj.exe
My system gets these commands one by one from a remote system. I need to execute each command in cmd.exe on receiving the command from the remote system. How to execute these using .NET?
I also need to return the result of testproj.exe to the remote machine. How to take the result after running command?