Configuring the resume of a partial file copy

Get help for specific problems
Posts: 3
Joined: 5 Sep 2023

mangeli67

Hi, I use the donor version of FFS and am copying large files (>100GB) with ADSL over VPN (very low speed).
When FFS crashes it restarts the copy and that is a problem for me. Larger files it cannot complete as it crashes before the end of the copy and restarts each time.
I know I can use robocopy with the -Z option or Rsync with the --partial option, but I like FFS.
How can I do this?
Posts: 1007
Joined: 8 May 2006

therube

(Aside from your question...)
When FFS crashes
Any message given as to the cause?
Posts: 3
Joined: 5 Sep 2023

mangeli67

Only to zip dump file and send by email
User avatar
Site Admin
Posts: 7170
Joined: 9 Dec 2007

Zenju

The crashes happen inside Windows functions:
ntdll.dll!RtlQueryPerformanceCounter(), or
ntdll.dll!RtlSleepConditionVariableSRW(), or
gdi32.dll!InternalDeleteObject()
These are not caused by an ordinary software bug. Either your Windows installation got corrupted, or you have a hardware error.

It might help to run:
Dism /Online /Cleanup-Image /RestoreHealth
sfc /scannow
Posts: 3
Joined: 5 Sep 2023

mangeli67

Thank's.