Ex :
Test
How can I change the value of the node Test to Power
Poweshell script I use:
$configuration = "app.config"
[xml]$xml = New-Object XML $xml.Load($configuration)
$xml.selectnodes("/configuration/Test") = {"UST"}
$xml.Save($configuration)