Download an RSS feed
This example downloads an RSS feed and displays the last 5 entries
PS> $rssUrl = "http://www.programmershelp.net/rss2.php?e=VB"
PS> $feed = [xml](new-object System.Net.WebClient).DownloadString($rssUrl)
PS> $feed.rss.channel.item | select title -first 5
|