Slow Network copy and connection drops in Windows 7
If you're new here, you may want to subscribe to Windows Reference RSS feed Thanks for visiting!
These could be
TCP Checksum Offload
UDP Checksum Offload
TCP Large Send Offload
IPSec Offload
To quickly resolve the problem, disable Task Offload globally that disable all the above Offload settings by doing the following:
1. Click Start and type “cmd” at the search box.
2. Right-click “cmd” icon and select “Run as Administrator“. This should lainch the command prompt with elevated permisions.
3. Run the following command to check the enabled offload tasks:
C:\Windows\system32> netsh int ip show offload
Interface 11: Local Area Connection
ipv4 transmit checksum supported.
udp transmit checksum supported.
tcp transmit checksum supported.
tcp large send offload supported.
ipv4 receive checksum supported.
udp receive checksum supported.
tcp receive checksum supported.
3. Run the following command to disable all Task offloads:
C:\Windows\system32> netsh int ip set global taskoffload=disabled
OK.
This should disable all the offloads.
4. Disable and Enable the NIC from “Control Panel – Network and Internet Connections – View Network Status and tasks – Change Adapter Settings“.
5. To check if all Offloads are disabled run the following command:
C:\Windows\system32> netsh int ip show offload
Nothing should be listed. This should help.
Also you may try disabling the power management option on the NIC as follows:
1. Click Start, right click “Computer” select Properties.
2. Click Device Manager. Right-click your NIC and choose Properties.
3. Choose Power Management tab and uncheck “Allow the computer to turn off this device to save power.”
4. Restart the computer and check if it works.
This should help especially with the Network disconnects.
Did you enjoy this post? Why not leave a comment below and continue the conversation, or subscribe to my feed and get articles like this delivered automatically each day to your feed reader.
Trackbacks & Pingbacks
Comments
Leave a comment
Line and paragraph breaks automatic, e-mail address never displayed, HTML allowed: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>






I tried many things. This did the trick for me! Thanks!