How can I remotely execute a commands on a Windows box as part of a build process?
If it matters, I want to initiate the commands from a linux machine which is performing the actual build.
To give some background...
A web application I am currently working on has, as part of the build process, a system for automatically reverting a linux VM, ssh-ing into it, installing the software, and then running a set of tests over the web interface. I'd like to do the same thing for Windows, but I'm not sure what the equivalent of ssh-ing in would be on a Windows machine.
Installing Cygwin to get sshd isn't an option (risks the system picking up some sort of cygwin dependency which this process is intended to prevent) and obviously something like remote desktop is fine for interactive use, but would not help me script the process (as far as I know).