如何获得"定期重启回收值"使用Powershell的IIS应用程序池

时间:2017-03-17 10:52:05

标签: powershell iis iis-7.5 application-pool

我正在使用Powershell 5.0.10586.117和IIS 7.5。

运行时

Get-ItemProperty ($singleAppPool) -Name Recycling.periodicRestart.schedule.collection

我收到了。

DefaultAppPool
value          : 03:00:00
Attributes     : {Microsoft.IIs.PowerShell.Framework.ConfigurationAttribute}
ChildElements  : {}
ElementTagName : add
Methods        : 
Schema         : Microsoft.IIs.PowerShell.Framework.ConfigurationElementSchema

但是我只想获得。但是

Get-ItemProperty ($singleAppPool) -Name Recycling.periodicRestart.schedule.collection 

未能找到"未找到"错误信息。

如何才能在这里获得价值

为了能够重现使用

Import-Module WebAdministration

一开始。

1 个答案:

答案 0 :(得分:1)

如果该命令适用于您的示例,则可以获取value属性,如下所示:

(Get-ItemProperty ($singleAppPool) -Name Recycling.periodicRestart.schedule.collection).Value

我无法诊断为什么在没有共享错误或不知道$ singleAppPool中的内容或服务器上的有效项目的情况下收到“未找到”错误消息的原因。