XP系統IIS最大連接數修改

方法一:

  安裝軟件 http://download.microsoft.com/download/iis50/Utility/5.0/NT45/EN-US/MtaEdt22.exe

  然後進入  W3SVC -- > Maxconnection 修改此最大連接數即可

               W3SVC -->1-- > Maxconnection 修改为40(最大只能为40)

方法二:

  增加連接極限IIS 5.1:
- 開始> 執行。 - 鍵入cmd。

- 鍵入"cd inetpubadminscripts" 在提示。

這將聯絡您到adminscripts 文件夾。

- 鍵入"cscript adsutil.vbs set w3svc/MaxConnections 40" 在提示。 這將跑設置MaxConnections 價值在IIS metabase 到40 的劇本(最大值允許) 。 - 鍵入"iisreset" 在提示。 這個命令關閉了和開始IIS 以便新設置將起作用

To Increase the Connection Limit of IIS 5.1:
Select Start > Run. The Run dialog box appears. Type cmd into the Open field. Click OK. A command prompt window appears. Type "cd inetpubadminscripts" at the prompt. This will connect you to the adminscripts folder. Type "cscript adsutil.vbs set w3svc/MaxConnections 40" at the prompt. This will run a script that sets the MaxConnections value in the IIS metabase to 40 (the maximum allowed). Type "iisreset" at the prompt. This command shuts down and starts IIS so that the new settings will take effect

原文地址:https://www.cnblogs.com/jack-Star/p/3833895.html