I have played around with Robocopy a few times but I just don't "get it".
With xcopy I would do something like:
xcopy D:\*.* F:\Drive_D_Backup /e/d/c/y /exclude:Exclusion.txt > BackupLog_DriveD.txt
This will xcopy only files that have changed while excluding all of the files in the folders listed in the Exclusion.txt file (Windows, Application Data, etc). The entire action will then be logged to BackupLog_DriveD.txt
A few months ago I spent several hours trying to find a way to reproduce this in Robocopy but could not figure it out.
Something else... when looking at the help text it appears as though I can set it up so that files will automatically be copied should they change, that way I don't have to perform an actual backup operation. Am I reading that correctly?
/MON:n :: MONitor source; run again when more than n changes seen.
/MOT:m :: MOnitor source; run again in m minutes Time, if changed.