This is how to quickly check an xml file for specific content:
[xml]$a = get-content D:\Path\To\File\DailyPaper.xml
$a.SelectNodes(“//Language[@iso=’de’]/Byline”)
Random outpourings of a software developer
This is how to quickly check an xml file for specific content:
[xml]$a = get-content D:\Path\To\File\DailyPaper.xml
$a.SelectNodes(“//Language[@iso=’de’]/Byline”)