I can't seem to find information on how to disable overlapped application pool recycling in IIS. Can anyone help me out?
|
The command should be:
Or, you can set it for a specific app pool with
Be sure to replace "AppPoolName" with your app pool name. I didn't test it, I typed it based on looking at the metabase, but it's going to be something very similar. If my first guess didn't work, let me know and I'll update it. I'm curious why you want to set this. When are the overlapping app pools an issue? |
|||||||
|
|
I have just set this up (thanks to the previous answer for finding the right key) - it is not settable on individual app pools in IIS6, but must be set for them all: AdsUtil //NoLogo set "w3svc/AppPools/DisallowOverlappingRotation" "1" In IIS 7 it is settable for each app pool, and can be done in the GUI or using the Powershell IIS provider: $recycling = Get-ItemProperty "iis:\apppools\${appPool}" -name "Recycling"; $recycling.disallowOverlappingRotation = $True; Set-ItemProperty "iis:\apppools\${appPool}" -name "Recycling" -value $recycling; |
|||
|
|