PowerShell: Get IIS Application Pools and their Timeout Time #PowerShell #IIS
Get-ChildItem IIS:\AppPools | %{$_ | select name, @{L="timeout"; E={$_.processmodel.idletimeout.minutes}}}