2024-10-01 15:11:03 +02:00
|
|
|
|
<#
|
2023-04-16 10:29:17 +02:00
|
|
|
|
.SYNOPSIS
|
2023-09-18 08:21:30 +02:00
|
|
|
|
Lists software updates
|
2023-04-16 10:29:17 +02:00
|
|
|
|
.DESCRIPTION
|
2024-03-03 10:32:22 +01:00
|
|
|
|
This PowerShell script queries the latest available software updates for the
|
|
|
|
|
local machine and lists it.
|
2023-09-18 08:21:30 +02:00
|
|
|
|
NOTE: Use the script 'install-updates.ps1' to install the listed updates.
|
2023-04-16 10:29:17 +02:00
|
|
|
|
.EXAMPLE
|
2023-08-06 21:35:36 +02:00
|
|
|
|
PS> ./list-updates.ps1
|
2023-07-19 08:00:24 +02:00
|
|
|
|
|
2024-03-03 10:32:22 +01:00
|
|
|
|
Name Id Version Available Source
|
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
|
Git Git.Git 2.43.0 2.44.0 winget
|
2023-07-19 08:00:24 +02:00
|
|
|
|
...
|
2023-04-16 10:29:17 +02:00
|
|
|
|
.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..."
|
2023-07-05 15:10:01 +02:00
|
|
|
|
& sudo snap refresh --list
|
2023-12-07 20:19:21 +01:00
|
|
|
|
} elseif ($IsMacOS) {
|
|
|
|
|
throw "Sorry, MacOS not supported yet"
|
2023-04-16 10:29:17 +02:00
|
|
|
|
} else {
|
2023-12-07 20:19:21 +01:00
|
|
|
|
Write-Progress "Querying updates from Microsoft Store and winget..."
|
2023-04-16 10:29:17 +02:00
|
|
|
|
" "
|
2023-09-18 08:21:30 +02:00
|
|
|
|
& winget upgrade --include-unknown
|
2023-10-27 12:06:06 +02:00
|
|
|
|
Write-Progress -completed "Done."
|
2023-04-16 10:29:17 +02:00
|
|
|
|
}
|
2024-03-03 10:32:22 +01:00
|
|
|
|
" "
|
2024-09-28 14:59:13 +02:00
|
|
|
|
"NOTE: Execute script '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
|
|
|
|
}
|