Hi all, I'm using TeamCity 4 to do CI with MSBuild. My problem is that when I try to copy file to the QA server, the msbuild fails, but if I change the script to copy locally it work. I've tried mapping the remote share as a local drive and still it doesn't seems to work.
This is my task on MSBuild:
<Exec Command="$(BATCH_PATH)deploy_DEV.bat $(DEPLOY_PATH)" />
This is the content of the batch file:
"C:\Program Files\Windows Resource Kits\Tools\robocopy" %1 \\RemoteServer\SharedDirectory\ /MIR
Any thoughts?
Thanks