show/hide this revision's text 4 added 15 characters in body

This may not be the most optimal, but it works. Simply load the xml and push it back out to a file. the xml heading is lost though, so this has to be re-added.

$files = get-ChildItem "*.xml"
foreach ( $file in $files )
{
    [System.Xml.XmlDocument]$doc = new-object System.Xml.XmlDocument;
    $doc.set_PreserveWhiteSpace( $true );
    $doc.Load( $file );

    $root = $doc.get_DocumentElement();
    $xml = $root.get_outerXml();
    $xml = "<?xml version=`"1.0`" encoding=`"utf-8`"?>" + $xml

    $newFile = $file.Name + ".new"
    Set-Content -Encoding UTF8 $newFile $xml;
}
show/hide this revision's text 3

This may not be the most optimal, but it works. Simply load the xml and push it back out to a file. the xml heading is lost though, so this has to be re-added.

I have had to 'escape' the angle brackets due to proxy pain.. sorry.

$files = get-ChildItem "*.xml"
foreach ( $file in $files )
{
    [System.Xml.XmlDocument]$doc = new-object System.Xml.XmlDocument;
    $doc.set_PreserveWhiteSpace( $true );
    $doc.Load( $file );

    $root = $doc.get_DocumentElement();
    $xml = $root.get_outerXml();
    $xml = "&lt;?xml <?xml version=`"1.0`" encoding=`"utf-8`"?&gt;" >" + $xml

    $newFile = $file.Name + ".new"
    Set-Content $newFile $xml;
}
show/hide this revision's text 2 changed innerXml to outerXml

This may not be the most optimal, but it works. Simply load the xml and push it back out to a file. the xml heading is lost though, so this has to be re-added.

I have had to 'escape' the angle brackets due to proxy pain.. sorry.

$files = get-ChildItem "*.xml"
foreach ( $file in $files )
{
    [System.Xml.XmlDocument]$doc = new-object System.Xml.XmlDocument;
    $doc.set_PreserveWhiteSpace( $true );
    $doc.Load( $file );

    $root = $doc.get_DocumentElement();
    $xml = $root.get_innerXml();
    root.get_outerXml();
    $xml = "&lt;?xml version=`"1.0`" encoding=`"utf-8`"?&gt;" + $xml

    $newFile = $file.Name + ".new"
    Set-Content $newFile $xml;
}
show/hide this revision's text 1