我在使用PowerShell DSC为IIS 7.5中的网站设置日志文件翻转计划时遇到错误。以下脚本
Configuration TestConfiguration
{
Import-DscResource –ModuleName PSDesiredStateConfiguration
Import-DscResource -ModuleName xWebAdministration
Node localhost
{
WindowsFeature IIS
{
Ensure = "Present"
Name = "Web-WebServer"
}
xWebsite DefaultSite
{
Ensure = "Present"
Name = "Default Web Site"
LogFormat = "W3C"
LogPeriod = "Hourly"
DependsOn = "[WindowsFeature]IIS"
}
}
}
给我错误:
每小时不是Int32的有效值
当目标设置已经是每小时且我在IIS 8.0中没有出现错误时,我没有收到错误。我的环境是:
有什么想法吗?谢谢!