Hello everyone,
Suppose I have the following XML file, and I want to use PowerShell (version 1.0) to manipulate the XML file to get the value for Foo (in this sample, value I want to get is "Foo Value") and Goo (in this sample, value I want to get is "Goo Value"), any ideas how to implement?
$FooConfig = [xml](get-content .\Foo.exe.config -ErrorAction:stop)
<configuration>
<appSettings>
<add key="Foo" value="Foo Value" />
<add key="Goo" value="Goo Value" />
</appSettings>
</configuration>
thanks in advance, George