Back up files on remote system

  • Thread starter Thread starter KRISH
  • Start date Start date
K

KRISH

Hi! everybody

How to schedule a task to back-up (copy) files existing on
remote system every day on to my computer automatically by
giving specific time.

Thanks for your help

Krish
 
KRISH said:
Hi! everybody

How to schedule a task to back-up (copy) files existing on
remote system every day on to my computer automatically by
giving specific time.

Thanks for your help

Krish

- Create a share called DataFiles on the remote PC.
- Create a batch file of the following form:
@echo off
xcopy /s /d /y "\\RemotePC\DataFiles\*.doc" d:\Backup\
- Use the Task Scheduler (it's in the Control Panel) to schedule
a task to run this batch file at the desired time each day. Remember
to use an account for the task that has appropriate access rights
to \\RemotePC\DataFiles.
 
Back
Top