4

次のPowerShellの行は、IIS6がインストールされている場合に機能します。

$service = New-Object System.DirectoryServices.DirectoryEntry("IIS://localhost/W3SVC")

ただし、IIS 7では、IIS 6管理互換性ロールサービスがインストールされていない限り、次のエラーがスローされます。

out-lineoutput : Exception retrieving member "ClassId2e4f51ef21dd47e99d3c952918aff9cd": "Unknown error (0x80005000)"

私の目標は、HttpCustomHeadersを変更することです。

$service.HttpCustomHeaders = $foo

IIS-7準拠の方法でこれを行うにはどうすればよいですか?

ありがとう

4

2 に答える 2

3

APPCMDC#/VB.NET/JavaScript/VBScriptを使用してこれを行う方法はいくつかあります。

カスタム ヘッダー (IIS.NET)

Microsoft.Web.AdministrationPowerShell とアセンブリを使用してこれを行うには:

[Reflection.Assembly]::Load("Microsoft.Web.Administration, Version=7.0.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")

$serverManager = new-object Microsoft.Web.Administration.ServerManager

$siteConfig = $serverManager.GetApplicationHostConfiguration()
$httpProtocolSection = $siteConfig.GetSection("system.webServer/httpProtocol", "Default Web Site")
$customHeadersCollection = $httpProtocolSection.GetCollection("customHeaders")
$addElement = $customHeadersCollection.CreateElement("add")
$addElement["name"] = "X-Custom-Name"
$addElement["value"] = "MyCustomValue"
$customHeadersCollection.Add($addElement)
$serverManager.CommitChanges()

これにより、次の<location>パスが生成されapplicationHost.configます。

<location path="Default Web Site">
    <system.webServer>
        <httpProtocol>
            <customHeaders>
                <add name="X-Custom-Name" value="MyCustomValue" />
            </customHeaders>
        </httpProtocol>
    </system.webServer>
</location>

新しい IIS 7 PowerShell スナップインを使用して PowerShell でこれを行うには:

add-webconfiguration `
   -filter /system.webServer/httpProtocol/customHeaders `
   -location "Default Web Site" `
   -pspath "IIS:" `
   -value @{name='X-MyHeader';value='MyCustomHeaderValue'} `
   -atindex 0

これにより、次の<location>パスが構成されます。applicationHost.config

<location path="Default Web Site">
    <system.webServer>
        <httpProtocol>
            <customHeaders>
                <clear />
                <add name="X-MyHeader" value="MyCustomHeaderValue" />
                <add name="X-Powered-By" value="ASP.NET" />
            </customHeaders>
        </httpProtocol>
    </system.webServer>
</location>

各行の終わりのバックティックは、行の継続を示します。上記の 2 つの例は、Windows 2008 Server SP2 でテストされています。

于 2009-11-11T17:59:20.977 に答える
1

IIS 7 PowerShell スナップインが追加されました。

http://learn.iis.net/page.aspx/428/getting-started-with-the-iis-70-powershell-snap-in/

于 2009-11-10T22:35:40.710 に答える