so how does everyone feel about "robocopy" to copy data from one location to multiple servers? share your robocopy scripts to see which works the best.. here is mine:
For /f %%a in (systems.txt) do call :copyfiles %%a < calls systems to copy to in text file
goto end
:copyfiles
Robocopy.exe...
Just a quick heads up.
I've got to migrate a lot of data and users home directories from an old server to a new server.
I've tried out robocopy, but it does not work, as the version that's available on Microsoft's website is XP010 - and it cannot copy security descriptors over.
I've...