How to replace the values in nested xml using Powershell?
How do i replace the values of "Racers", "Pacers" "Losers" from "false" to "True" using PowerShell ?
<Tester>
<TesterSection>
<section name="TestingApp" type="Amazon,Google" />
</TesterSection>
<application>
<add key="Minimum" value="1" />
<add key="Maximum" value="true" />
<add key="Runners" value="N/A" />
<add key="Racers" value="false" />
<add key="Pacers" value="false" />
<add key="Losers" value="false" />
</application>
</Tester> ```
keyvalues or because theirvaluevalues are allfalse; that is - what ifRunnerswas alsofalse, would itsvaluehave to change, too, or just these three?