3

I have a farm of IIS servers running Exchange and we are getting this error in HTTP Error:

HTTP/1.1 POST /ews/exchange.asmx - 1 Connection_Dropped_List_Full MSExchangeServicesAppPool

The advice from MSFT is to increase the app pool queue length from 1,000 to 10,000

How do I change IIS's MSExchangeServicesAppPool to a new value via the command line

makerofthings7
  • 8,911
  • 34
  • 121
  • 197

2 Answers2

3

The correct syntax can be found on IIS.NET site.

To change the queue length you would have to enter:

appcmd.exe set APPPOOL "DefaultAppPool" /add.queueLength:10000

in your case:

appcmd.exe set APPPOOL "MSExchangeServicesAppPool" /add.queueLength:10000

You can list the current configuration settings with:

appcmd.exe list APPPOOL "MSExchangeServicesAppPool" /text:*

Hope this helps.

John K. N.
  • 2,055
  • 1
  • 17
  • 28
2

I don't have a way to test this right now, so this might not work. That said you might be able to change this using appcmd (http://www.iis.net/learn/get-started/getting-started-with-iis/getting-started-with-appcmdexe) to change the queue length - it's in applicationHost.config (http://www.iis.net/configreference/system.applicationhost/applicationpools/add)

for example

%systemroot%\system32\inetsrv\APPCMD set apppool "MyAppPool" /add.queueLength 10000
MikeBaz - MSFT
  • 1,253
  • 3
  • 15
  • 37