Skip to content

Instantly share code, notes, and snippets.

@ducas
Created May 11, 2011 05:25
Show Gist options
  • Save ducas/965965 to your computer and use it in GitHub Desktop.
Save ducas/965965 to your computer and use it in GitHub Desktop.
Read RSS from Powershell
[Reflection.Assembly]::LoadWithPartialName("System.ServiceModel.Web") | out-null
$reader = [System.Xml.XmlReader]::Create("http://news.ninemsn.com.au/rss/headlines/")
$formatter = New-Object System.ServiceModel.Syndication.Rss20FeedFormatter
$formatter.ReadFrom($reader)
$formatter.Feed.Items
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment