Curated Examples
Read multiple RSS feeds
Use PSWebToolbox to read several RSS feeds and return a compact table.
This pattern is useful when a script needs to collect recent posts from several feeds.
It is adapted from Examples/Example-RssFeedPipeline1.ps1.
Example
Import-Module PSWebToolbox
$feeds = @(
'https://evotec.xyz/feed'
'https://devblogs.microsoft.com/powershell/feed/'
)
$feeds | Get-RSSFeed -Count 10 -Verbose | Format-Table Title, PublishDate, Link -AutoSize
What this demonstrates
- piping multiple feed URLs into
Get-RSSFeed - limiting results per feed
- shaping output for quick review