File copy from Windows to Unix

I am trying to copy my build output files from my build machine -which is a windows server to unix server.
Right now i am copying using pscp utility,but the password encryption is not working as windows commands cannot identify the encrypted password in the BF environment variable.
Is it possible to copy from windos to unix using .put command?
I have tried like this
.put/E test.txt TARGET_SERVER:/home/myid
But then the selector for the above command is windows,and the step is failing.
Please Help..
2 answers

Comments

I am trying like this in my buildforge step
.put/E pscp.txt <Target server>:/home/myid
(I have pscp.txt in my windows server and the selector for this step is windows server selector.
The unix selector name is the Target Server)
The result is like this
9 4/22/15 5:55 AM READ Read of C:\test\pscp.txt complete. 10 4/22/15 5:55 AM WRITE can't open /home/myid for write. 11 4/22/15 5:55 AM RESULT 4

The path /home/myid is relative to the build agent sandbox. It looks like you are trying to put a file to /home/myid, as opposed to /<bfagent working dir>/home/myid.