• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Question Fastest copy

I don't know if it's the absolute fastest since I've never timed it, but robocopy is, hands down, a much more robust, useful tool than xcopy. I've never really done anything with the powershell tool.
 
Which is faster?

1. Xcopy
2. Robocopy
3. Copy-Item (Powershell)
Xcopy and Copy-Item may be single threaded. Robocopy by default uses 8 threads to copy 8 files simultaneously (you can increase the thread count up to the number of your physical cores). But obviously the storage medium should be able to handle writing files in parallel. If you are reading from and writing to an SSD, Robocopy may potentially perform the fastest. I would suggest timing the copying of some folder with a large number of variable sized files. Do Robocopy first. Reboot. Then try Xcopy. As soon as the time exceeds 30 seconds more, abort it, reboot and finally test copy-item.
 
Teracopy is great, and the speed is excellent. There are some comparisons between it and some tools like Robocopy, FastCopy, Goodsync, GS RichCopy 360, and Rclone. It was great compared to these tools
Which of these tools can I use to migrate data from windows server 2016 to Azure blob ?
 
Back
Top