当前位置:  开发笔记 > 编程语言 > 正文

使用Powershell更改IIS站点主目录

如何解决《使用Powershell更改IIS站点主目录》经验,为你挑选了1个好方法。

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

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

我试过了$site.Path = ,$site.Put( "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()

Glennular.. 20

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



1> Glennular..:
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

推荐阅读
谢谢巷议
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有