Can PowerShell handle XML files? Extensible Markup Language is just text, so PowerShell can certainly load the contents of an XML file into a variable: $xml = Get ...
I've been trying to put a small script together to build out XML config files for a product at work. While you can edit the file by hand and file in all the blanks, its pretty big and error-prone. I ...