Let's say I have the following XML element:
<test> 1000 </test>
I want to change it to:
<test > 500 </test>
Using PowerShell how would I do this.
I know how to make the xml object with PowerShell and make a node variable to access a certain node within the XML. I just don't know the exact command(s) to replace the text inside the node.