file transfer

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi! How do i write a batch file to transfer one folder from Host A to Host B?
and the batch file is schedule to run using task scheduler.

Pls advise. Thanks.
 
dkblee said:
Hi! How do i write a batch file to transfer one folder from Host A to Host B?
and the batch file is schedule to run using task scheduler.

Pls advise. Thanks.

Try this:
@echo off
xcopy /s /y /c /d "d:\Some Folder" '\\HostB\SomeShare\Some Folder\"
 
Back
Top