"KRISH" <(E-Mail Removed)> wrote in message
news:05c101c35262$aeedd280$(E-Mail Removed)...
> 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.
|