无法使用PowerShell提取XML节点的值

时间:2012-06-01 16:23:55

标签: xml powershell

我正在尝试从xml文件中提取一些信息,并根据需要更新/创建应用程序池。这是我正在阅读的xml:

<?xml version="1.0" encoding="utf-8"?>
<appPool name="MyAppPool">
  <enable32BitAppOnWin64>true</enable32BitAppOnWin64>
  <managedPipelineMode>Integrated</managedPipelineMode>
  <managedRuntimeVersion>v4.0</managedRuntimeVersion>
  <autoStart>true</autoStart>
</appPool>

以下是我正在尝试用它做的事情:

#read in the xml
$appPoolXml = [xml](Get-Content $file)

#get the name of the app pool
$name = $appPoolXml.appPool.name

#iterate over the nodes and update the app pool
$appPoolXml.appPool.ChildNodes | % {
     #this is where the problem exists
     set-itemproperty IIS:\AppPools\$name -name $_.Name -value $_.Value
}

$_.Name返回正确的节点名称(即enable32BitAppOnWin64),但.Value属性不返回任何内容。如何提取我想要的数据?

1 个答案:

答案 0 :(得分:20)

更正回答:

您希望$_.'#text'代替$_.Value

还要考虑这一点,它使用InnerText对象上的System.Xml.XmlElement属性:

$ xml.appPool.ChildNodes | %{$ .Name; $ .InnerText};