1

ページhttp://technet.microsoft.com/en-us/library/cc772183(v=ws.10).aspxでは、HTTP Keep-Alive 応答ヘッダー (IIS 7) を有効にする方法について説明しています。

これをPowershell by WMIで行いたい

それは言います:

この手順を実行するには、次の WMI クラス、メソッド、またはプロパティを使用します。 HTTPProtocolSection.AllowKeepAliveプロパティ

私はもう試した:

PS > Get-WmiObject -Class HTTPProtocolSection
Get-WmiObject : Invalid class
At line:1 char:14
+ Get-WmiObject <<<<  -Class HTTPProtocolSection
    + CategoryInfo          : InvalidOperation: (:) [Get-WmiObject], ManagementException
    + FullyQualifiedErrorId : GetWMIManagementException,Microsoft.PowerShell.Commands.GetWmiObjectCommand

この HTTPProtocolSection クラスを使用して AllowKeepAlive プロパティを有効にする正しい方法は何ですか?

4

2 に答える 2

4

Set-WebConfigurationコマンドレットを使用して設定することもできます。

Set-WebConfiguration -Filter system.webServer/httpProtocol -PSPath MACHINE/WEBROOT/APPHOST -Value @{allowKeepAlive=$true}
于 2013-08-23T16:41:23.590 に答える