gpt4 book ai didi

powershell - Set-ItemProperty IIS :\AppPools\[App_Pool] -Name Recycling. PeriodicRestart.Time 在 Server 2012 R2 中无效

转载 作者:行者123 更新时间:2023-12-04 18:36:54 28 4
gpt4 key购买 nike

我有几个服务器场,一个是 Server 2008 R2和一个 Server 2012 R2 .经过大量搜索,我找到了以下 powershell 来禁用默认的 IIS 应用程序池回收,我在管理 powershell 提示符下运行它:

Set-ItemProperty IIS:\AppPools\Test -Name Recycling.PeriodicRestart.Time -Value 0

这似乎工作正常(它在任一平台上都没有任何输出运行),但是当我随后尝试在 Server 2008 R2 上查询该值时,我明白了:
PSPath                      : WebAdministration::\\SERVER1\AppPools\Test
PSParentPath : WebAdministration::\\SERVER1\AppPools
PSChildName : Test
PSDrive : IIS
PSProvider : WebAdministration
IsInheritedFromDefaultValue : False
IsProtected : False
Name : time
TypeName : System.TimeSpan
Schema : Microsoft.IIs.PowerShell.Framework.ConfigurationAttributeSchema
Value : 00:00:00
IsExtended : False

但在 Server 2012 R2 ,我明白了:
PSPath                      : WebAdministration::\\SERVER2\AppPools\Test
PSParentPath : WebAdministration::\\SERVER2\AppPools
PSChildName : Test
PSDrive : IIS
PSProvider : WebAdministration
IsInheritedFromDefaultValue : True
IsProtected : False
Name : time
TypeName : System.TimeSpan
Schema : Microsoft.IIs.PowerShell.Framework.ConfigurationAttributeSchema
Value : 1.05:00:00
IsExtended : False

请注意 Value在第一个例子中是 00:00:00 ,但在第二个例子中是 1.05:00:00 .这是从 DefaultAppPool 继承的默认值.

我试图更改 DefaultAppPool 的值同样,但我得到了相同的结果——它适用于 2008 R2但不是在 2012 R2 ,所以我相当肯定继承不是问题。

Server 2012 R2 中是否有其他方法可以做到这一点以便它不会忽略命令或更好的方法——一种在 Server 2008 R2 中都有效的方法和 Server 2012 R2 ?

最佳答案

啊。经过多次挫折,似乎Set-ItemPropertycase-sensitive ,即使 Get-ItemProperty不是。对于所有发现此问题的人,解决方案非常简单:

Set-ItemProperty -Path "IIS:\AppPools\Test" -Name recycling.periodicRestart.time -Value 00:00:00

(注意属性名称的小写)。雪上加霜 Server 2012 R2 , Set-ItemProperty在属性名称大小写与底层 C:\Windows\System32\inetsrv\config\applicationHost.config 中正确的 XML 元素名称不完全匹配的情况下(无双关语),静默失败文件。

关于powershell - Set-ItemProperty IIS :\AppPools\[App_Pool] -Name Recycling. PeriodicRestart.Time 在 Server 2012 R2 中无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33576111/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com