Possible to resume download from network drive if it gets disconnected?

10

2

I need to download a 10 GB VM file from a network drive. The problem is I periodically need to access a VPN connection which disconnects the network drive.

I am not able to resume the download after I disconnect from the VPN and re-access the network drive. I've tried 4 times.

I need the file as soon as possible for work. Will I need to wait until I finish working today to start the download and let it run over night?

I'm using Windows 7.

Travis

Posted 2012-10-24T13:21:49.027

Reputation: 413

Answers

13

You should be able to use the command line tool Robocopy, which supports resuming transfers after network connections drop. It's now built into Windows 7. You can type robocopy /? to see all of the options. I suspect the section entitled Retry Options is most relevant to what you're doing. In particular, it might be worth it to set this parameter

/W:n :: Wait time between retries: default is 30 seconds.

If you are usually connecting to the VPN for periods of 10 or 20 minutes, it might be worth it to increase this retry wait time.

As an alternative, you may be able to set up the VPN connection so that you are still able to access local network resources. Some VPN setups allow this, and others don't.

dsolimano

Posted 2012-10-24T13:21:49.027

Reputation: 2 778

1Please, correct me if I'm wrong, but robocopy doesn't resume download, it just starts over... So, if the file big enough, and the connection drops are frequent, you won't get your file... – Sergey Kostrukov – 2015-01-30T14:22:45.263

3

@SergeyKostrukov look at https://technet.microsoft.com/en-us/library/cc733145.aspx, option /z.

– dsolimano – 2015-01-30T14:37:31.713

Thanks, will take a look at the meaning of the /z and /b modes. – Sergey Kostrukov – 2015-01-30T19:39:44.933

Yes, /z does the job well, thanks! – Sergey Kostrukov – 2015-08-05T18:59:26.467