IIS 7.5

时间:2017-03-30 02:31:04

标签: powershell iis iis-7.5 powershell-dsc

我在使用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中没有出现错误时,我没有收到错误。我的环境是:

  • Windows Server 2008 R2 Standard 6.1(Build 7601:Service Pack 1)
  • IIS 7.5
  • Powershell 5.0
  • xWebAdministration 1.17.0.0

有什么想法吗?谢谢!

1 个答案:

答案 0 :(得分:0)

此错误由this拉取请求修复,并在xWebAdministration 1.18.0.0中发布。