Ignore Xml-Namespaces in Powershell
Quick and dirty: just remove them before parsing. m(
$xml = New-Object xml $xml = ([String](Get-Content "file.xml") -replace 'xmlns.*CONFIG">','>' ) |
Quick and dirty: just remove them before parsing. m(
$xml = New-Object xml $xml = ([String](Get-Content "file.xml") -replace 'xmlns.*CONFIG">','>' ) |