I have a few new files that are being copied out of thousands that seem to have worked correctly. When I check the new files DATE ACCESSED it shows to date they were created but they should have not been copied.
Has anyone ran into any trouble using MinLAD?

robocopy "E:\Files" "T:\Files" . /E /MOVE /MINLAD:399 /R:3 /W:3 /TEE

11 Spice ups

Add the switch to copy the timestamps(/DCOPY:T) and see what you get.

robocopy "E:\Files\" "T:\Files\" *.* /E /MOVE /MINLAD:399 /R:3 /W:3 /TEE /DCOPY:T
2 Spice ups

please check the below links

https://superuser.com/questions/1519537/robocopy-command-to-copy-updated-files-and-long-path-names/1522132#1522132

2 Spice ups

Try running the command with /TS /L to evaluate what files robocopy has determined it will copy.

You may also want to run your robocopy using the /B that may leave the Last Access Date alone.