Turning podcast OPML into a Powershell object
[xml]$opml = get-content C:\temp\Podcasts.opml
select-xml -xml $opml -xpath “//body” | select -ExpandProperty Node | select -ExpandProperty Outline
Turning podcast OPML into a Powershell object
[xml]$opml = get-content C:\temp\Podcasts.opml
select-xml -xml $opml -xpath “//body” | select -ExpandProperty Node | select -ExpandProperty Outline