Project

PSWebToolbox

Simple PowerShell Module to get RSS feeds

Stars13
Forks3
Open issues0
PowerShell Gallery downloads842
Language: PowerShell Updated: 2019-07-28T20:24:43.0000000+00:00

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

Source