2023-07-29 09:55:25 +02:00
|
|
|
## Script: *list-updates.ps1*
|
2023-05-26 12:20:18 +02:00
|
|
|
|
2023-07-29 09:45:37 +02:00
|
|
|
This PowerShell script queries and lists available software updates for the local machine.
|
|
|
|
Use 'install-updates.ps1' to install the listed updates.
|
2023-05-26 12:20:18 +02:00
|
|
|
|
|
|
|
## Parameters
|
|
|
|
```powershell
|
2023-07-29 09:45:37 +02:00
|
|
|
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.
|
|
|
|
```
|
|
|
|
|
|
|
|
## Example
|
|
|
|
```powershell
|
|
|
|
PS> ./list-updates
|
|
|
|
|
2023-07-29 09:45:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
Name Id Version Available Source
|
|
|
|
-----------------------------------------------------------------------------------------------------------------------
|
|
|
|
Git Git.Git 2.41.0 2.41.0.2 winget
|
|
|
|
...
|
|
|
|
|
2023-05-26 12:20:18 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
## Notes
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
|
|
|
## Related Links
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
2023-07-29 09:55:25 +02:00
|
|
|
## Script Content
|
2023-05-26 12:20:18 +02:00
|
|
|
```powershell
|
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
2023-07-29 09:45:37 +02:00
|
|
|
Lists new software updates
|
2023-05-26 12:20:18 +02:00
|
|
|
.DESCRIPTION
|
2023-07-29 09:45:37 +02:00
|
|
|
This PowerShell script queries and lists available software updates for the local machine.
|
|
|
|
Use 'install-updates.ps1' to install the listed updates.
|
2023-05-26 12:20:18 +02:00
|
|
|
.EXAMPLE
|
|
|
|
PS> ./list-updates
|
2023-07-29 09:45:37 +02:00
|
|
|
|
|
|
|
Name Id Version Available Source
|
|
|
|
-----------------------------------------------------------------------------------------------------------------------
|
|
|
|
Git Git.Git 2.41.0 2.41.0.2 winget
|
|
|
|
...
|
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-05-26 12:20:18 +02:00
|
|
|
} else {
|
|
|
|
" "
|
2023-07-29 09:45:37 +02:00
|
|
|
Write-Progress "⏳ Querying new software updates..."
|
2023-05-26 12:20:18 +02:00
|
|
|
& winget upgrade
|
|
|
|
Write-Progress -completed "."
|
|
|
|
}
|
2023-07-29 09:45:37 +02:00
|
|
|
"(use '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
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2023-07-29 09:55:25 +02:00
|
|
|
*(generated by convert-ps2md.ps1 using the comment-based help of list-updates.ps1 as of 07/29/2023 09:55:12)*
|