Saturday, December 23, 2006

Multiple concurrent connections for Internet

If your Internet access support high bandwidth and you want to establish more concurrent connections than two, perform the following steps:

  1. Start the registry editor. (regedit.exe)
  2. Locate the registry subkey HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings
  3. Add a new, DWORD Value named MaxConnectionsPer1_0Server
  4. Add a new, DWORD Value named MaxConnectionsPerServer
  5. Edit these two and set it to the value for the number of connections you want. (I have mine set to 10.)

With this registry tweak I can download 10 files concurrently. This works with all Windows Internet applications that use the standard API, including Internet Explorer. More can be found on this at Microsoft's KB.

Or the following four rows can be saved to a text file using Notepad and with the .reg file extension. For example MaxConnectionsPerServer.reg. Then just run (merge) this file.

Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"MaxConnectionsPer1_0Server"=dword:0000000a
"MaxConnectionsPerServer"=dword:0000000a

No comments:

Post a Comment