PowerShell/Scripts/list-updates.ps1

34 lines
824 B
PowerShell
Raw Normal View History

2023-04-16 10:29:17 +02:00
<#
.SYNOPSIS
2023-05-04 07:55:15 +02:00
Lists updates
2023-04-16 10:29:17 +02:00
.DESCRIPTION
2023-07-01 16:55:09 +02:00
This PowerShell script queries and lists available software updates for the local machine.
NOTE: use 'install-updates.ps1' to install the listed updates.
2023-04-16 10:29:17 +02:00
.EXAMPLE
PS> ./list-updates
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
if ($IsLinux) {
2023-07-01 16:55:09 +02:00
"⏳ (1/2) Querying package updates..."
2023-04-16 10:29:17 +02:00
& sudo apt update
2023-04-19 08:42:14 +02:00
& sudo apt list --upgradable
2023-07-01 16:55:09 +02:00
"⏳ (2/2) Querying Snap updates..."
& sudo snap refresh --list
2023-04-16 10:29:17 +02:00
} else {
" "
2023-07-01 16:55:09 +02:00
Write-Progress "⏳ Querying available software updates..."
2023-04-16 10:29:17 +02:00
& winget upgrade
2023-05-04 07:55:15 +02:00
Write-Progress -completed "."
2023-04-16 10:29:17 +02:00
}
2023-07-01 16:55:09 +02:00
"NOTE: use 'install-updates.ps1' to install the listed updates."
2023-04-16 10:29:17 +02:00
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
2023-04-17 20:34:05 +02:00
}