Try to disable TaskOffload on the TCPIP stack:
I had the same problem--slow file copies from the network. BITS was already disabled, and the problem persisted in Safe Mode.
It turns out the problem appeared to be the TCP Offloading to the network adapter. The NIC in my laptop (Atheros AR8152) had issues with the taskoffloading.
As soon as I disabled task offloading, my network throughput went from 10kb/sec to full line speed.
Disable TCP offloading by modifying the registry:
- Open Regedit
- Browse to HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Tcpip\Parameters
- Create a new REG_DWORD (32bit) value "DisableTaskOffload"
- Set the data to 1
- Reboot the computer
This will have the CPU handle the network processing. I noticed the CPU doing stuff when copying but at least I was able to copy data.
Enjoy!