How to use windows to do regular backup procedures

  
        The data files of some programs under WINDOWS (refer to WINDOWS9.X, WINDOWS2000, WINDOWSNT, etc.) need to be backed up frequently, but the operation or application does not provide a convenient backup program. However, windows7 can change the cumbersome steps, small Internet search of regular backup procedures done a rookie-level Windows born, do not need to manually back up every time

Note: From time to time I need to back up The db file is in the D:work disk, and the backup backups are bake1 and bake2 of the E disk respectively. Because the backup error is prevented, the secondary backup is used! Both bake1 backup work and bake2 backup bake1.

a. db file in the backup

1.work1 backup work. Write 1.bat (path: E:? At1.bat)

bat file contents:

@echo

copyD: work * .dbE:? Ake1

exit

2.bake2 backup bake1. Write 2.bat (path: E:? At2.bat)

bat file contents:

@echo

copyE:? Ake1 * .dbE:? Ake2 < BR>
exit

3. for secondary backup, backup write .bat

bat file contents:

@echo

startE: ? at1.bat

startE:? at2.bat

exit

but in fact this is not available, here we can use the copy command of mandatory coverage, you can prior to delete source:!

big exam where you can use pre-pruning is very good

1.bat

@echo

delE :? ake1

copyD: work * .dbE:? ake1

exit

2.bat

@echo

delE:? ake2

copyE:? ake1 * .dbE:? ake2

exit

this is not echoed to perform a double backup running .bat

Prepare !

II. Automatic timer to run a backup

1. Open Windows comes with the Scheduled Tasks tool (Task Scheduler)!

2. Double-click Add Scheduled Task to run the Scheduled Task Wizard

3 . Browse to the backup .bat

4. enter the name of the task, choose to perform

day 5. select the start time and date.

6. Enter the user account password

7. Select the Open advanced properties have been built

8. Double-click the task, click Finish time, click on the Schedule - Advanced.

9. Select repetitive tasks set repeat of the options.

10.

so that you can complete every once in a while to run once, easily secondary backup!


Copyright © Windows knowledge All Rights Reserved