Hi admins!
I have a couple of webservers hosting around 20 sites with there corresponding app pool.
I would now like like to disable app pool recycling (default is every 1740 minutes)
I would also like to disable the “idle time-out” (default is 20 minutes)
Been trying a while but i really need some help
I was thinking something like this
$appPools = Get-childItem IIS:\AppPools
foreach ($appPool in $appPools)
{
“Disable recycling and idle time-out , but i don’t know how :)”
}
How would you continue ?
Cheers
Johan