janikvonrotz
12/5/2013 - 2:54 PM

PowerShell: Get IIS Application Pools and their Timeout Time #PowerShell #IIS

PowerShell: Get IIS Application Pools and their Timeout Time #PowerShell #IIS

Get-ChildItem IIS:\AppPools | %{$_ | select name, @{L="timeout"; E={$_.processmodel.idletimeout.minutes}}}