私はFortifyスキャンで生成したxml
文書を持っています。私がやりたいことは、このドキュメントを解析し、ハイを引き出し、ミディアム、および低数とに割り当てるあるPowershellを使用したXML解析
<Chart chartType="table">
<Axis>Fortify Priority Order</Axis>
<MajorAttribute>Analysis</MajorAttribute>
<GroupingSection count="2">
<groupTitle>High</groupTitle>
</GroupingSection>
<GroupingSection count="101">
<groupTitle>Low</groupTitle>
</GroupingSection>
<GroupingSection count="5">
<groupTitle>Medium</groupTitle>
</GroupingSection>
</Chart>
:現在、私はこのようになりますxml
ドキュメントを持っています変数を別のスクリプトに渡します。
私の問題は、私はpowershell
にxml
ファイルを引っ張ったときに、どのように私はハイ調査結果のカウントを得るのですかですか?
現在のスクリプト:
$xml = [xml](get-content $file)
$xml.GetElementsByTagName('groupTitle') | Select-Object -Property 'High'
@JPBlacのおかげ
$a
考えるdは!これは素晴らしい作品です! –