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
プロパティは何も返しません。必要なデータを抽出するにはどうすればよいですか?