Perhaps you are not authorized to some of the files you are trying to copy?
You could try to copy it with robocopy and it can generate a log file saying what if failed to copy.
This command would copy drive D to a folder called "500GB drive backup" on your desktop and make a logfile called copylog.txtalso on your desktop.
Code:
robocopy d: "%userprofile%desktop500GB drive backup" /copyall /e /r:0 /log:%userprofile%desktopcopylog.txt
You'll get a log something like this saying what it couldn't copy and why:Code:
--------------------------- ROBOCOPY :: Robust File Copy for Windows --------------------------- Started : 29 December, 2015 11:35:17 Source : d: Dest : C:UsersHaliDesktop500GB drive backup Files : *.* Options : *.* /S /E /COPYALL /R:0 /W:30 -------------------------- New Dir 1 e: New File 200.0 m pagefile.sys 0.0% 0.5% 1.0% 99.5% 100% New Dir 0 e:$RECYCLE.BIN New Dir 1 e:$RECYCLE.BINS-1-5-21-1027584776-2358194297-2548917410-1001 New File 129 desktop.ini 0% 100% New Dir 1 e:$RECYCLE.BINS-1-5-21-2602478595-2806783560-1643973225-1001 New File 129 desktop.ini 0% 100% New Dir 1 e:$RECYCLE.BINS-1-5-21-3178208141-977810998-1597272411-1001 New File 129 desktop.ini 0% 100% New Dir 1 e:$RECYCLE.BINS-1-5-21-3244269357-763748866-2916749009-1009 New File 129 desktop.ini 0% 100% New Dir 1 e:$RECYCLE.BINS-1-5-21-3536341058-2341531926-3888982254-1001 New File 129 desktop.ini 0% 100% New Dir 1 e:$RECYCLE.BINS-1-5-21-3536341058-2341531926-3888982254-500 New File 129 desktop.ini 0% 100% New Dir 0 e:10 New Dir 3 e:System Volume Information New File 76 IndexerVolumeGuid 2015/12/29 11:36:48 ERROR 5 (0x00000005) Copying File e:System Volume InformationIndexerVolumeGuid Access is denied. New File 20480 tracking.log 2015/12/29 11:36:48 ERROR 5 (0x00000005) Copying File e:System Volume Information racking.log Access is denied. New File 12 WPSettings.dat 2015/12/29 11:36:48 ERROR 5 (0x00000005) Copying File e:System Volume InformationWPSettings.dat Access is denied. 0% 30% 60% 91% 100% -------------------------- Total Copied Skipped Mismatch FAILED Extras Dirs : 14 14 0 0 0 0 Files : 17 14 0 0 3 0 Bytes : 205.70 m 205.68 m 0 0 20.0 k 0 Times : 0:01:30 0:00:00 0:00:00 0:01:30 Speed : 1191569016 Bytes/sec. Speed : 68182.126 MegaBytes/min. Ended : 29 December, 2015 11:36:48