Question : moving drive with robocopy, how to do incremental copy?

I started a robocopy yesterday to move all data on a drive to a new network storage device, I mapped drives to the source and destination and ran the following command.

C:\>robocopy h:\ i:\ /zb /copyall  /mir /tee /r:0 /w:0 /log:c:\robolog.log

When I checked it today it appears that the command finished, over 100 GB move fine but 20 GB or so failed.

If I wanted to run the command again and only copy whatever is different what syntax should I use? I don't want to re-copy the 100+ GB just whatever was missed or new data until the final migration.

Thanks,

Answer : moving drive with robocopy, how to do incremental copy?

try placing the same code in the current event of the form


Private Sub Form_Current()
    Select Case Me.cboWorkCategory.Column(1)
        Case "CLIENT RATES", "PHARMACY RATES", "COPAY", "ADVANTAGE 90", "DAW", "ACCUMULATIONS", "NEW PLAN - COPIED/TEMPLATE", "PANELS", "NEW PLAN", "SPECIALTY", "NON-ELIGIBILITY PLAN"
            Me.ROUTING_MCO_FIFO.Controls("cboMCOClaimsMonitor").Enabled = True
            Me.ROUTING_COMMERCIAL_FIFO.Controls("cboCOMClaimsMonitor").Enabled = True
        Case Else
            Me.ROUTING_MCO_FIFO.Controls("cboMCOClaimsMonitor").Enabled = False
            Me.ROUTING_COMMERCIAL_FIFO.Controls("cboCOMClaimsMonitor").Enabled = False
             
    End Select
End Sub
Random Solutions  
 
programming4us programming4us