Copy File to Another Server Using Batch File

Viewed 41

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
  1. Source Folder: /e D:\Data Source\Image
  2. Server: 192.168.0.1
  3. Username: ABCD\Administrator
  4. Password:ABCDI123
  5. 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 ?

0 Answers
Related