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 ...
Use the Export-Clixml cmdlet when capturing XML data that you'll want to use later in a PowerShell session. In the Windows world the XML format has long been the format of choice for capturing complex ...