Using a batch file I'm trying to copy and then move a file from a local FTP folder to my pc. To access the local FTP I use the administration user and password. This how it looks.
net use Z: "\\servername\FTP Folders\otherfolder" password /USER:domain\administrator
copy Test.txt C:\Users\username\Desktop\ProcessVault\Test.txt
move /y \\servername\FTP Folders\otherfolder\test.txt C:\Users\username\Desktop\folder\May\Test.txt
pause
The file copy works properly but the move is not working. Cant figure out why this is not working. This appears after I run the batch file.
"System error 1219 has occurred. Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all previous connections to the server or shared resource and try again."
Any idea why I can't move the file?