Probably some of the colleague administrators faced such a problem when, due to lack of system resources, the windows platform refuses to copy large files with built-in tools (usually these are 60 + Gb backup files), say from one disk to another, the Robocopy utility does not help either from Sysinternals. I propose to solve this problem using the KillCopy utility, and in order to not have to work with your hands, we will create a simple script, since the utility allows you to work with it from the command line:
@ECHO off
ECHO ========================== ECHO Keys: ECHO r -retry on any error ECHO n-start KillCopy in minimized state ECHO m -move files ECHO x -don't delete! List filelist ECHO u-try resume if target file exists. ECHO ========================== ')
SET BCKP_FLDR = <folder where we copy> SET DST_FLDR = <folder where we copy>
rem set the path in which the list of copied files will be created, and also set the killcopy parameters. SET BCKP_LIST = C: \ backuplist.txt SET copyParm = -rnmxu
rem set the path where the history file and the killcopy log are stored SET CHECK_FILE = C: \ Progra ~ 1 \ KillSoft \ KillCopy \ history.txt SET CHECK_LOG = C: \ Scripts \ killcopycheck.txt