{"id":19055396,"url":"https://github.com/evotecit/pswebtoolbox","last_synced_at":"2025-08-23T18:05:27.777Z","repository":{"id":95331780,"uuid":"157028429","full_name":"EvotecIT/PSWebToolbox","owner":"EvotecIT","description":"Simple PowerShell Module to get RSS feeds ","archived":false,"fork":false,"pushed_at":"2019-07-28T20:24:43.000Z","size":22,"stargazers_count":13,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-20T00:48:14.764Z","etag":null,"topics":["hacktoberfest","powershell","rss","rss-reader"],"latest_commit_sha":null,"homepage":"","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/EvotecIT.png","metadata":{"files":{"readme":"README.MD","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2018-11-10T22:48:43.000Z","updated_at":"2024-07-02T14:24:37.000Z","dependencies_parsed_at":"2023-05-02T20:32:13.517Z","dependency_job_id":null,"html_url":"https://github.com/EvotecIT/PSWebToolbox","commit_stats":{"total_commits":23,"total_committers":2,"mean_commits":11.5,"dds":"0.21739130434782605","last_synced_commit":"8052dc7cbbee8a6f0c54c08b9ef148e0f5a503f8"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/EvotecIT/PSWebToolbox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EvotecIT%2FPSWebToolbox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EvotecIT%2FPSWebToolbox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EvotecIT%2FPSWebToolbox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EvotecIT%2FPSWebToolbox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EvotecIT","download_url":"https://codeload.github.com/EvotecIT/PSWebToolbox/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EvotecIT%2FPSWebToolbox/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271760492,"owners_count":24816430,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-23T02:00:09.327Z","response_time":69,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hacktoberfest","powershell","rss","rss-reader"],"created_at":"2024-11-08T23:44:43.938Z","updated_at":"2025-08-23T18:05:27.749Z","avatar_url":"https://github.com/EvotecIT.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PSWebToolbox - PowerShell Module\n\n[![Build status](https://ci.appveyor.com/api/projects/status/gl0ekjy96mg2gcmt?svg=true)](https://ci.appveyor.com/project/PrzemyslawKlys/pswebtoolbox)\n[![Build Status](https://dev.azure.com/evotecpl/PSWebToolbox/_apis/build/status/EvotecIT.PSWebToolbox)](https://dev.azure.com/evotecpl/PSWebToolbox/_build/latest?definitionId=4)\n\n## Examples for Get-RssFeed\nBelow you can find couple of examples on `Get-RssFeed`\n\n### Example 1\n\n```powershell\nImport-Module PSWebToolbox -Force\n\n'https://evotec.xyz/feed',\n'https://blogs.technet.microsoft.com/heyscriptingguy/feed/',\n'https://ridicurious.com/feed' | Get-RSSFeed -Count 12 -Verbose | Format-Table -AutoSize\n```\n\n### Example 2\n\n```powershell\nImport-Module PSWebToolbox -Force\n\n'https://evotec.xyz/feed' | Get-RSSFeed -Count 10 -Verbose | Format-Table -AutoSize\n'https://blogs.technet.microsoft.com/heyscriptingguy/feed/' | Get-RssFeed -Verbose -Count 20 | Out-GridView\n'http://blogs.technet.com/b/heyscriptingguy/atom.aspx' | Get-RssFeed -Verbose -Count 15 | Out-GridView\n```\n\n### Example 3\n\n```powershell\nImport-Module PSWebToolbox -Force\n\n$Blogs = Get-RSSFeed -url 'https://evotec.xyz/feed' -Verbose\n$Blogs += Get-RSSFeed -url 'https://www.sconstantinou.com/feed' -Verbose\n$Blogs += Get-RSSFeed -url 'https://ridicurious.com/feed' -Verbose\n$Blogs += Get-RSSFeed -url 'https://kevinmarquette.github.io/feed' -Verbose -Count 10\n$Blogs | Format-Table -AutoSize\n$Blogs | Out-GridView\n```\n\n### Example 4\n\n```powershell\nImport-Module PSWebToolbox -Force\n\nGet-RSSFeed -Url 'https://blogs.msdn.microsoft.com/powershell/feed/' -Count 15 | Format-Table #-Autosize\n```\n\n### Example 5\n\n```powershell\nImport-Module PSWebToolbox -Force\nGet-RssFeed -Url 'https://evotec.xyz/feed' -CategoriesOnly\n```\n\n```powershell\n# Output:\nCount Name\n----- ----\n    8 powershell\n    5 office 365\n    5 windows\n    2 mailbox\n    2 exchange online\n    2 Exchange\n    1 workflow\n    1 smtp\n    1 import-pssession\n    1 prefix\n    1 exchange mailbox move\n    1 forwarding rules\n    1 insiders\n    1 windows 10\n    1 windows 10 1809\n    1 windows server\n    1 inboxrules\n    1 windows 2012\n    1 windows 2012R2\n    1 runspaces\n    1 psblacklistchecker\n    1 autoit\n    1 environment\n    1 discord\n    1 active directory\n    1 azure\n    1 azure ad\n    1 parameters\n    1 ip\n    1 net.dns\n    1 resolve-dns\n    1 blacklist ip\n    1 psmodulepath\n    1 variables\n    1 blacklist\n\n```\n\n### Example 6\n\n```powershell\nImport-Module PSWebToolbox -Force\n$Feed = Get-RssFeed -Url 'https://evotec.xyz/feed' -All\n$Feed | Out-GridView\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevotecit%2Fpswebtoolbox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fevotecit%2Fpswebtoolbox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevotecit%2Fpswebtoolbox/lists"}