增加 IE 同時下載檔案數上限

Post date: 01-Sep-2011 15:03:38

Internet Explorer IE8 或 IE9 同時下載檔案數上限預設為 6 個,如果您的電腦使用高速寬頻上網如光纖到戶網絡,便可考慮修改增加 IE 同時下載檔案數預設上限,提升網頁顯示速度。

執行下述批次檔案會修改電腦系統登錄機碼,將 IE 同時下載檔案數上限增加到 32 個:

IE_Max_Connections_Per_Server_Increase_Limit.bat

@rem IE8 或 IE9 同時下載檔案數上限預設為 6 個,

@rem 此批次檔案會修改電腦系統登錄機碼,

@rem 將 Internet Explorer 同時下載檔案數上限增加,

@rem 可將 max 設定值更改,但不建議大於 128。

set max=32

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /V MaxConnectionsPer1_0Server /t REG_DWORD /d %max% /f

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /V MaxConnectionsPerServer /t REG_DWORD /d %max% /f

reg add "HKLM\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_MAXCONNECTIONSPER1_0SERVER" /V iexplore.exe /t REG_DWORD /d %max% /f

reg add "HKLM\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_MAXCONNECTIONSPERSERVER" /V iexplore.exe /t REG_DWORD /d %max% /f

if not exist "%ProgramFiles(x86)%" goto not_64-bit_OS

reg add "HKLM\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_MAXCONNECTIONSPER1_0SERVER" /V iexplore.exe /tREG_DWORD /d %max% /f

reg add "HKLM\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_MAXCONNECTIONSPERSERVER" /V iexplore.exe /t REG_DWORD /d %max% /f

:not_64-bit_OS

ping localhost -n 10 > nul

執行下述批次檔案會將 Internet Explorer 同時下載檔案數上限還原至系統預設值:

IE_Max_Connections_Per_Server_Restore_To_Default.bat 下載連結

@rem 此批次檔案會刪除 IE_Max_Connections_Per_Server_Increase.bat 所作的修改,

@rem 將 Internet Explorer 同時下載檔案數上限還原至系統預設值。

reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /V MaxConnectionsPer1_0Server /f

reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /V MaxConnectionsPerServer /f

reg delete "HKLM\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_MAXCONNECTIONSPER1_0SERVER" /V iexplore.exe /f

reg delete "HKLM\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_MAXCONNECTIONSPERSERVER" /V iexplore.exe /f

if not exist "%ProgramFiles(x86)%" goto not_64-bit_OS

reg delete "HKLM\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_MAXCONNECTIONSPER1_0SERVER" /V iexplore.exe /f

reg delete "HKLM\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_MAXCONNECTIONSPERSERVER" /V iexplore.exe /f

:not_64-bit_OS

ping localhost -n 10 > nul

參考資枓 :

http://support.microsoft.com/kb/282402

http://msdn.microsoft.com/en-us/library/ee330731 (v=vs.85).aspx#http10_max_con


以系統管理員身分執行


HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\MaxConnectionsPer1_0Server

HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\MaxConnectionsPerServer


HKLM\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_MAXCONNECTIONSPER1_0SERVER\iexplore.exe

keyword 關鍵字 Tag 標籤 : Windows Internet Explorer 8 Windows Internet Explorer 9 maximum number of concurrent HTTP connections increase adjust simultaneous download limit number of concurrent downloads high speed broadband fibre-optic broadband increase web site page loading speed regedit registry


HKLM\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_MAXCONNECTIONSPERSERVER\iexplore.exe


HKLM\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_MAXCONNECTIONSPER1_0SERVER\iexplore.exe


HKLM\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_MAXCONNECTIONSPERSERVER\iexplore.exe