This is a Quick Powershell note how you can use Powershell to read RSS feeds. This is pretty simple you can use the .NET class WebClient.
$rssFeed = <pre lang="xml">(New-Object System.Net.WebClient).DownloadString('https://www.thomasmaurer.ch/feed/') $rssFeed.rss.channel.item | Select-Object title -First 5
Tags: .NET, Microsoft, PowerShell, RSS, RSS Feed, WebClient, Windows Powershell Last modified: March 31, 2011