ページ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 プロパティを有効にする正しい方法は何ですか?