• Sponsored Links :

Mr. Deepak Patel

How to backup your word, excel data in two peer to peer network computer.

to backup your files create one job folder in node 1 computer and create backup-job folder in another computer node2 computer.

then share backup-job folder on node2
create one batch file at command prompt with following command lines.

copy con backup.bat
cd\
c:\
cd job
xcopy copy *.* x:\. /v /s /d
cls

Press Control + C to end this batch file.
In this batch file x:\ is a share which was created on node2. and /v /s /d is option for copy that means it varifies file while copying s for sub directories copy and d stands for date modified. If you have a thousands file in job folder and you modify only 10 files then only 10 files will be copied to backup folder.

Run this file in command mode on windows mode.
if you want to schedule this backup.bat file then use scheduler in taskbar. With help of scheduler you can backup your data every hour, every day, every month choice is yours.