Increase IIS Connections running on XP
When developing locally on IIS, with the addition of AJAX, I found myself running out of connections -- the default is 10. Turns out you can bump the connections up to 40. Here's what you need to do:
- Open the command prompt
- Navigate to \inetpub\adminscripts
- Enter the following command: cscript adsutil.vbs set w3svc/MaxConnections 40
- Restart IIS ( you can use iisreset at the same command prompt)
Comments