A long FTP upload is a pain with Total Commander because every other while you can receive a Transfer failed, continue operation?
error. If both your connection and the server’s connection is OK (and most frequently, this is the case), all you need to do is answering Yes
. But this means you need to sit before the computer, maybe even for hours, or risk it’ll stop somewhere and won’t continue until you go there and press Enter.
Here’s a better solution in Autoit.
While True Sleep(1000) If WinExists('[CLASS:TCheckMsgBox]') Then WinActivate('[CLASS:TCheckMsgBox]') Sleep(1000) Send('{enter}') EndIf WEnd
That’s all. Copy it to an .au3
file, run it, and forget about it.