Copying to a network shared folder extremely slow

Solution 1:

While I would consider the existing answers here also valid as potential solutions and it's certainly worth checking your network adapter configuration, I suspect the following two points may also be of help.

  1. For whatever reason if you are trying to copy files using UNC network paths beginning with a double back-slash such as \\machine_name\shared_folder this will often take a lot more time than if you map a drive letter to a network path. Try mapping a drive letter and see if that makes all the difference.

    In Windows the Map Network Drive button can normally be found on the toolbar when you browse to My Computer or Computer (depends on your version of Windows), or you can use the command prompt if you prefer:

    net use n: \\machine_name\shared_folder /persistent

  2. One other thing to bear in mind, is that if your folder has a lot of small individual files alot of processing time and bandwidth can be taken up with the file headers, and so if this is the case it is usually much quicker to compress the folder using your favourite tool (mine is 7zip) and then copy or move the compressed file over the network as a single file instead of hundreds of individual smaller files, and then simply uncompress the file again at the other end to extract your files.

    The impact of this is very noticeable when using protocols such as FTP, S-FTP or SCP for file transfers if you ever find yourself copying files to and from remote web servers.

Solution 2:

Just a guess but Antivirus? In particular, does either Computer A or Computer B have two conflicting antivirus products installed?