8

我可以查询 AD 并找到所有 IIS 站点及其虚拟目录,现在我需要能够更新这些主目录并保存更改。

获取目录条目后,我可以使用 显示站点路径$site.Path,但是设置它似乎没有任何效果。它永远不会改变实际存储的路径。

我已经尝试过$site.Path = <new path>$site.Put( "Path", <new path> )但这些似乎都没有影响存储的路径。

    $site = $iis.psbase.children | 
        where {$_.keyType -eq "iiswebserver"} | 
        where {$_.psbase.properties.servercomment -eq $siteConfig.name };

    $s = [ADSI]($site.psbase.path + "/ROOT");
    $s.Path
    # $s.Path = $siteConfig.path
    # $s.Put("Path", $siteConfig.path )
    $s.psbase.CommitChanges()
4

2 回答 2

21
Import-Module WebAdministration
Set-ItemProperty 'IIS:\Sites\Default Web Site\' -name physicalPath -value $siteConfig.path

http://technet.microsoft.com/en-us/library/ee909471(WS.10).aspx

于 2011-03-28T19:04:26.527 回答
0

好的,我试过这个,它似乎工作:

    $s.psbase.properties.path[0] = $siteConfig.path
    $s.psbase.CommitChanges()

有没有更好的清洁方法来处理这个问题?

于 2008-11-18T17:53:25.020 回答