通过PowerShell更改IIS 6主目录权限

时间:2013-05-28 15:37:43

标签: iis powershell iis-6

Alter IIS 6 Home Directory permissions via PowerShell

有谁知道如何通过PowerShell改变标记的属性? 只有阶级和财产就足够了:)

谢谢!

1 个答案:

答案 0 :(得分:-1)

注意:我没有写这个博客,但似乎回答了这个问题:

<# This function will set the home directory of an IIS 6 website using Powershell 2 (it will not work with v1).
You need to pass it the site description (from the Web Site tab in IIS), the new path and the server your website is running on (this can be a machine name or an IP address).
You wouldn’t believe how long it took me to get this working. 
Found on: http://eliasbland.wordpress.com/2010/08/03/change-the-home-directory-of-an-iis-6-website-using-powershell-2-and-wmi/

Usage: SetHomeDirectory "mysite.co.uk" "d:\websites\mysite" "myServer"
#>

Function SetHomeDirectory($SiteDescription, $NewPath, $serverName) {
    $query = "ServerComment = '" + $SiteDescription + "'"
    $webserver = Get-WMIObject -class IIsWebServerSetting -namespace "root\microsoftiisv2" -Filter $query -computer $serverName -authentication 6
    $nameQuery = "Name = '" + $webserver.Name + "/root'"
    $webdir = Get-WMIObject -class IIsWebVirtualDirSetting -namespace "root\microsoftiisv2" -Filter $nameQuery -computer $serverName -authentication 6
    $webdir.Path = $NewPath
    Set-WmiInstance -InputObject $webdir
}

编辑:根据评论

复制整个脚本