Always manual too much trouble Win's automatic backup function does not try

  
        

For many people, the hardware in the computer is not what they care most about. Intangible data assets are the most valuable and most important. Just like Xiaobian, this hard-working manuscript of more than ten years, shooting various photos and collecting seeds, can't be exchanged with money, worrying about the Raid 1 hard drive hanging together, various backups The means are brushed in progress.


There are a lot of mainstream backup software now, although it is convenient, but I can't think of setting it up. In order to avoid the advent of the final judgment, you can leave some hope for survival to the rest of the human beings, so let Windows carry out the automatic backup in the end!

First pinch, run the command prompt in administrator mode, type "ROBOCOPY /?" (without quotes o1) to view the usage of the Windows backup command. To ask why it is always around the system with its own function mining skills, Xiaobian's answer is very simple, no third-party software C drive will be very clean, Windows own things do not have to worry about permissions, the most important, you can pass these Under the DOS command, you don't have to work hard to turn the book bird when you test the computer level 2 and level 4.


Back to the topic of backup, if we want to automatically back up some folder of the C drive to another place every time (recommended to use mobile hard disk or external storage) , then the command format is:

ROBOCOPY C:\\? ? ? X:\\? ? ? /R:0 /W:0 /MOT:##

Where? Represents the name of the folder, X represents the target drive letter, the parameter R is added to indicate the number of times the backup failed, and W is the retry interval, which can be left blank. The MOT is the interval between automatic backups. The unit is minute. It is recommended that you set the time according to the actual situation of using the computer. For example, if you edit the time to 24 hours, you can let it toss yourself every day during the lunch break, without affecting the overall performance.

If you want to automatically back up the user folder of the C drive to the mobile hard disk F every 24 hours, the correct expression is:

ROBOCOPY C:\\Users F:\\Backup/R :0 /W:0 /MOT:1440


To make it smarter, OK, just turn on the monitoring function of ROBOCOPY:

ROBOCOPY C:\\Users F: \\backup /e /copyall /MOT:## /MON:##

It is to increase the length of each monitoring file change (MON:## represents the number of changes you set, greater than the setting Start the backup) Start the automatic backup operation.

Very simple, as long as this is set, basically do not have to worry about the regular data security problem, and find the backup folder to recover.

Copyright © Windows knowledge All Rights Reserved