0

I try to run .bat file from remote desktop.

I do it by run the next command:

net use m: \\the-ip-of-the-remote-computer mypassword /myuser
// Execution works well

then, I try to xcopy from the remote desktop to my computer. So I write this:

net use t: \\the-ip-of-the-remote-desktop mypassword /myuser
xcopy \\the-ip-of-the-remote-computer my-libary

But in some cases, this command is not execute well.

I also try this, and it doesn't work:

net use m: \\the-ip-of-the-remote-desktop mypassword /myuser
xcopy net use t: \\the-ip-of-the-remote-computer mypassword /myuser my-libary

and It also doesn't work.

What can be the problem.

4

1 回答 1

0

尝试映射共享,然后在使用之前更改为该驱动器xcopy

net use M: \\the-ip-of-the-remote-computer mypassword /myuser
pushd M:\
xcopy folder\filetocopy C:\yourcdrivefolder
于 2012-12-14T10:15:12.690 回答