8

我正在编写一些自动化脚本以使用 PowerShell 在服务器上创建/更新 IIS 站点。

目的是拥有一个配置对象,然后可以由单个脚本处理以完成所有繁重的工作。

我的配置HashTable如下所示:

$config = @{
    AppPools = (
        @{
            Name="AppPool1"
            Properties = @{
                Enable32BitAppOnWin64=$true
                ManagedRuntimeVersion="v4.0"
                ProcessModel = @{
                    IdentityType = "NetworkService"
                }
            }
        }
    )
    Websites = (
        @{
            Name="Site1"
            Properties = @{
                PhysicalPath = "C:\sites\site1"
                ApplicationPool = "AppPool1"
            }
        }
    )    
}

然后我的脚本使用配置来处理每个应用程序池和网站:

 Import-Module WebAdministration

 $config.AppPools | 
    % {
        $poolPath = "IIS:\AppPools\$($_.Name)"
        
        # Create if not exists
        if(-not(Test-Path $poolPath)){ New-WebAppPool $_.Name }            
        
        # Update the properties from the config
        $pool = Get-Item $poolPath
        Set-PropertiesFromHash $pool $_.Properties
        $pool | Set-Item            
    }
        
 $config.Websites | 
    %{        
        $sitePath = "IIS:\Sites\$($_.Name)"
            
        # Create if not exists
        if(-not(Test-Path $sitePath)){ New-WebSite $_.Name -HostHeader $_.Name }
            
        # Update the properties from the config
        $site = Get-Item $sitePath
        Set-PropertiesFromHash $site $_.Properties
        $site | Set-Item 
    }      

如您所见,该过程实际上是相同的(除了正在创建的项目路径和类型)。如果我能正常工作,这当然会被重构!

我编写了一个名为Set-PropertiesFromHash. 这基本上将哈希表展平为属性路径:

Function Set-PropertiesFromHash{
    Param(
        [Parameter(Mandatory=$true, HelpMessage="The object to set properties on")]        
        $on,
        [Parameter(Mandatory=$true, HelpMessage="The HashTable of properties")]
        [HashTable]$properties,
        [Parameter(HelpMessage="The property path built up")]
        $path
    )
    foreach($key in $properties.Keys){
        if($properties.$key -is [HashTable]){
            Set-PropertiesFromHash $on $properties.$key ($path,$key -join '.')
        } else {            
            & ([scriptblock]::Create( "`$on$path.$key = `$properties.$key"))            
        }
    }
}

scriptblock子句中的 createdelse将导致执行$on.ProcessModel.IdentityType = $properties.IdentityType(每个循环中的属性对象是最后找到的 HashTable 值,因此这确实分配了正确的值)

问题

还在?谢谢!

对于应用程序池,上述所有方法都可以正常工作,但对于网站则完全失败为什么这仅对网站失败?

我知道我可以使用Set-ItemProperty,但这里的目的是允许配置对象驱动正在设置的属性。

下面详细介绍一个更简单的示例:

# Setting an app pool property this way works as expected
$ap = gi IIS:\apppools\apppool1
$ap.enable32BitAppOnWin64 # returns False
$ap.enable32BitAppOnWin64 = $true
$ap | Set-Item
$ap = gi IIS:\apppools\apppool1
$ap.enable32BitAppOnWin64 # returns True

# Setting a website property this way fails silently
$site = gi IIS:\sites\site1
$site.physicalpath # returns "C:\sites\site1"
$site.physicalpath = "C:\sites\anothersite"
$site | Set-Item
$site = gi IIS:\sites\site1
$site.physicalpath # returns "C:\sites\site1"

AfterSet-Item被调用,然后再次检索的项目$ap具有更新的值但$site不包含更新的值。

我正在使用 PowerShell v2 和 IIS7

部分解决...更多的解决方法

我已更改Set-PropertiesFromHash为如下工作:

Function Set-PropertiesFromHash{
    Param(
        [Parameter(Mandatory=$true, HelpMessage="The object to set properties on")]        
        $on,
        [Parameter(Mandatory=$true, HelpMessage="The HashTable of properties")]
        [HashTable]$properties,
        [Parameter(HelpMessage="The property path built up")]
        $pathParts = @()
    )
    foreach($key in $properties.Keys){        
        if($properties.$key -is [HashTable]){
            Set-PropertiesFromHash $on $properties.$key ($pathParts + $key)
        } else {                  
            $path = ($pathParts + $key) -join "."
            Set-ItemProperty $on $path $properties.$key
        }
    }
}

这让我现在可以继续。但是我原来的问题仍然存在。

为什么$site | Set-Item网站会失败?

4

1 回答 1

1

这似乎有效

(gi IIS:\sites\site1).physicalpath
(gi IIS:\sites\site1).physicalpath = "C:\sites\anothersite"
(gi IIS:\sites\site1).physicalpath
于 2012-11-05T16:09:00.207 回答