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\"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top