Documentation containing notes and tips which I have referred to while using powershell
If there are multiple nodes of same name within a xml file, and we want to retrive nodes with a particular key, we can do so using the following
- For selecting a single node with a particular attribute:
$xmlFile.SelectNodes('//nodeName[@attributeName]')