0

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

有谁知道如何通过 powershell 更改标记的属性?只是类和属性就足够了:)

谢谢!

4

1 回答 1

-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
}

编辑:根据评论复制带有链接的整个脚本

于 2013-07-14T06:19:12.090 回答