Copy Big File from Remote Desktop
Sometimes we need copy big files (more or equal from 2GB), and on the middle of copying it cancelled accidentally. There 2 methods we can use for it:
Method 1
Use Drive Redirection through Remote Desktop Services or a Terminal Services session if you want to transfer files larger than 2 GB.
Method 2
Use command-line alternatives such as XCopy to copy files larger than 2 GB over a Remote Desktop Services or Terminal Services session. For example, you can use the following command:
xcopy \\tsclient\c\myfiles\LargeFile d:\temp
Here is the help source.