2021-04-26 07:41:22 +02:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
|
|
|
|
list-os-updates.ps1 [<RSS-URL>] [<max-count>]
|
|
|
|
|
.DESCRIPTION
|
|
|
|
|
Lists the latest operating system updates
|
|
|
|
|
.EXAMPLE
|
|
|
|
|
PS> .\list-os-updates.ps1
|
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES
|
2021-08-03 15:53:57 +02:00
|
|
|
|
Author: Markus Fleschutz
|
|
|
|
|
License: CC0
|
2021-04-26 07:41:22 +02:00
|
|
|
|
#>
|
|
|
|
|
|
2021-07-15 15:51:22 +02:00
|
|
|
|
param([string]$RSS_URL = "https://distrowatch.com/news/dwd.xml", [int]$MaxCount = 20)
|
2021-04-26 07:41:22 +02:00
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
& "$PSScriptRoot/write-big.ps1" "OS Updates"
|
|
|
|
|
[xml]$Content = (invoke-webRequest -URI $RSS_URL).Content
|
|
|
|
|
"`t(by $($Content.rss.channel.title))"
|
|
|
|
|
|
|
|
|
|
[int]$Count = 0
|
|
|
|
|
foreach ($item in $Content.rss.channel.item) {
|
|
|
|
|
"`t→ $($item.title)"
|
|
|
|
|
$Count++
|
|
|
|
|
if ($Count -eq $MaxCount) { break }
|
|
|
|
|
}
|
|
|
|
|
exit 0
|
|
|
|
|
} catch {
|
2021-05-02 21:30:48 +02:00
|
|
|
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-04-26 07:41:22 +02:00
|
|
|
|
exit 1
|
|
|
|
|
}
|