2024-11-08 12:38:20 +01:00
|
|
|
The *list-updates.ps1* Script
|
|
|
|
===========================
|
2023-05-26 12:20:18 +02:00
|
|
|
|
2024-03-27 17:36:59 +01:00
|
|
|
This PowerShell script queries the latest available software updates for the
|
|
|
|
local machine and lists it.
|
2023-09-20 17:05:11 +02:00
|
|
|
NOTE: Use the script 'install-updates.ps1' to install the listed updates.
|
2023-05-26 12:20:18 +02:00
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Parameters
|
|
|
|
----------
|
2023-05-26 12:20:18 +02:00
|
|
|
```powershell
|
2024-11-08 12:35:11 +01:00
|
|
|
/home/markus/Repos/PowerShell/scripts/list-updates.ps1 [<CommonParameters>]
|
2023-05-26 12:20:18 +02:00
|
|
|
|
|
|
|
[<CommonParameters>]
|
|
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
|
|
```
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Example
|
|
|
|
-------
|
2023-05-26 12:20:18 +02:00
|
|
|
```powershell
|
2023-08-06 21:36:33 +02:00
|
|
|
PS> ./list-updates.ps1
|
2023-05-26 12:20:18 +02:00
|
|
|
|
2023-07-29 09:45:37 +02:00
|
|
|
|
|
|
|
|
2024-03-27 17:36:59 +01:00
|
|
|
Name Id Version Available Source
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
Git Git.Git 2.43.0 2.44.0 winget
|
2023-07-29 09:45:37 +02:00
|
|
|
...
|
|
|
|
|
2023-05-26 12:20:18 +02:00
|
|
|
```
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Notes
|
|
|
|
-----
|
2023-05-26 12:20:18 +02:00
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Related Links
|
|
|
|
-------------
|
2023-05-26 12:20:18 +02:00
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Script Content
|
|
|
|
--------------
|
2023-05-26 12:20:18 +02:00
|
|
|
```powershell
|
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
2023-09-20 17:05:11 +02:00
|
|
|
Lists software updates
|
2023-05-26 12:20:18 +02:00
|
|
|
.DESCRIPTION
|
2024-03-27 17:36:59 +01:00
|
|
|
This PowerShell script queries the latest available software updates for the
|
|
|
|
local machine and lists it.
|
2023-09-20 17:05:11 +02:00
|
|
|
NOTE: Use the script 'install-updates.ps1' to install the listed updates.
|
2023-05-26 12:20:18 +02:00
|
|
|
.EXAMPLE
|
2023-08-06 21:36:33 +02:00
|
|
|
PS> ./list-updates.ps1
|
2023-07-29 09:45:37 +02:00
|
|
|
|
2024-03-27 17:36:59 +01:00
|
|
|
Name Id Version Available Source
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
Git Git.Git 2.43.0 2.44.0 winget
|
2023-07-29 09:45:37 +02:00
|
|
|
...
|
2023-05-26 12:20:18 +02:00
|
|
|
.LINK
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
#>
|
|
|
|
|
|
|
|
try {
|
|
|
|
if ($IsLinux) {
|
2023-07-29 09:45:37 +02:00
|
|
|
"⏳ (1/2) Querying package updates..."
|
2023-05-26 12:20:18 +02:00
|
|
|
& sudo apt update
|
|
|
|
& sudo apt list --upgradable
|
2023-07-29 09:45:37 +02:00
|
|
|
"⏳ (2/2) Querying Snap updates..."
|
|
|
|
& sudo snap refresh --list
|
2023-12-07 20:24:45 +01:00
|
|
|
} elseif ($IsMacOS) {
|
|
|
|
throw "Sorry, MacOS not supported yet"
|
2023-05-26 12:20:18 +02:00
|
|
|
} else {
|
2023-12-07 20:24:45 +01:00
|
|
|
Write-Progress "Querying updates from Microsoft Store and winget..."
|
2023-05-26 12:20:18 +02:00
|
|
|
" "
|
2023-09-20 17:05:11 +02:00
|
|
|
& winget upgrade --include-unknown
|
2023-12-07 20:24:45 +01:00
|
|
|
Write-Progress -completed "Done."
|
2023-05-26 12:20:18 +02:00
|
|
|
}
|
2024-03-27 17:36:59 +01:00
|
|
|
" "
|
2024-11-08 12:35:11 +01:00
|
|
|
"NOTE: Execute script 'install-updates.ps1' to install the listed updates."
|
2023-05-26 12:20:18 +02:00
|
|
|
exit 0 # success
|
|
|
|
} catch {
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2024-11-20 11:52:20 +01:00
|
|
|
*(generated by convert-ps2md.ps1 as of 11/20/2024 11:51:57)*
|