2023-04-16 10:29:17 +02:00
|
|
|
|
<#
|
|
|
|
|
.SYNOPSIS
|
|
|
|
|
Lists software updates
|
|
|
|
|
.DESCRIPTION
|
|
|
|
|
This PowerShell script lists available updates for the local machine.
|
|
|
|
|
.EXAMPLE
|
|
|
|
|
PS> ./list-updates
|
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
if ($IsLinux) {
|
2023-04-17 20:34:05 +02:00
|
|
|
|
Write-Host "⏳ Querying available updates..."
|
2023-04-16 10:29:17 +02:00
|
|
|
|
& sudo apt update
|
|
|
|
|
} else {
|
|
|
|
|
Write-Progress "⏳ Querying available updates..."
|
|
|
|
|
" "
|
|
|
|
|
& winget upgrade
|
|
|
|
|
Write-Progress -Completed " "
|
|
|
|
|
}
|
|
|
|
|
exit 0 # success
|
|
|
|
|
} catch {
|
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
|
exit 1
|
2023-04-17 20:34:05 +02:00
|
|
|
|
}
|