We are wanting to deploy our application to our Test server from our Hudson server.
I'd like to be able to have hudson copy the application files and start a script that would run locally on our Test server.
We can't use psexec because of a cross domain policy.
Currently we are doing this manually, by RDPing to the Test server and checking out the code from subversion manually.
Are there alternatives to PSExec that can bypass the cross domain policy problem?
You could try to write a program to execute stuff using the CreateProcessWithLogonW() function. You could also try OpenSSH for Windows but I have not tried it.
PS: Policies exist to facilitate work, not block it.