How to copy files from one server to another server using a batch ?
This are my command.
@echo off
xcopy /e D:\Data Source\Image "\\192.168.0.1\C$ ABCDI123 /user:ABCD\Administrator \D:\Data Source\\Image
exit
- Source Folder: /e D:\Data Source\Image
- Server: 192.168.0.1
- Username: ABCD\Administrator
- Password:ABCDI123
- Destination Folder: \D:\Data Source\Image
Im not getting an error but file was not found at the destination folder. I want to clarify does my syntax are in correct order ?