Windows Backup - RoboCopy ScriptTo Backup the Documents of a Single user I like to have two different backups. The first is an exact copy of the current documents so that if I needed to restore the state of my computer I can get it back to how it was. The second type is where I have the latest version of a file such that if I delete a document that has previously been backed up that file remains in the archive. The following are examples of each: robocopy C:\Users\[UserName]\Documents K:\Backup\Mirror\Users\[UserName]\Documents\ /E /MIR robocopy C:\Users\[UserName]\Documents K:\Backup\Complete\Users\[UserName]\Documents\ /E /COPYALL | ||
