Powershell - 应用程序池 - 高级设置 - 常规时间间隔

时间:2012-01-30 19:42:44

标签: powershell iis-7.5 application-pool

我正在尝试使用PowerShell查询IIS7.5中Applicaiton池的高级设置。

通过GUI - 突出显示应用程序池,单击操作窗格中的“高级设置”。

我试图在powershell中使用“webAdministration”模块,但我找不到正确的函数或语法。

我可以在IIS:\ AppPools *下找到应用程序池,但我无法查询每个应用程序池的配置/属性设置/等。

我很难找到有关如何查询此信息的任何信息,非常感谢任何帮助。

1 个答案:

答案 0 :(得分:9)

这是你需要的(现在不能测试,对不起)?

 $Pool = New-Item IIS:\AppPools\MyAppPool
 $Pool.recycling.periodicRestart.time = [TimeSpan] "00:10:00" # this to set
 $Pool.recycling.periodicRestart.time # this to get