Make incremental and differential backups with Robocopy

backuprobocopy

I wanted to know if it is possible to make incremental and differential backups using just Robocopy and arguments.

Putting it in a simple bat and making that bat run in Task Scheduler seems like a simple backup plan that I would need.

I think I prefer "incremental" because differential would erase things that I don't have anymore (using /MIR argument)

Best Answer

Technically can, but probably shouldn't if you require the ability to roll back to a point in time. It's not really what the program was intended for.

http://ss64.com/nt/robocopy.html

Might be better off using something like Git. Or there are native Windows options

Related Topic