mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-16 03:30:39 +01:00
65 lines
1.6 KiB
Markdown
65 lines
1.6 KiB
Markdown
|
## The *list-updates.ps1* Script
|
||
|
|
||
|
This PowerShell script lists available software updates for the local machine.
|
||
|
Use "install-updates.ps1" to install the listed updates.
|
||
|
|
||
|
## Parameters
|
||
|
```powershell
|
||
|
/home/mf/Repos/PowerShell/Scripts/list-updates.ps1 [<CommonParameters>]
|
||
|
|
||
|
[<CommonParameters>]
|
||
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||
|
```
|
||
|
|
||
|
## Example
|
||
|
```powershell
|
||
|
PS> ./list-updates
|
||
|
|
||
|
```
|
||
|
|
||
|
## Notes
|
||
|
Author: Markus Fleschutz | License: CC0
|
||
|
|
||
|
## Related Links
|
||
|
https://github.com/fleschutz/PowerShell
|
||
|
|
||
|
## Source Code
|
||
|
```powershell
|
||
|
<#
|
||
|
.SYNOPSIS
|
||
|
Lists updates
|
||
|
.DESCRIPTION
|
||
|
This PowerShell script lists available software updates for the local machine.
|
||
|
Use "install-updates.ps1" to install the listed updates.
|
||
|
.EXAMPLE
|
||
|
PS> ./list-updates
|
||
|
.LINK
|
||
|
https://github.com/fleschutz/PowerShell
|
||
|
.NOTES
|
||
|
Author: Markus Fleschutz | License: CC0
|
||
|
#>
|
||
|
|
||
|
try {
|
||
|
if ($IsLinux) {
|
||
|
"⏳ (1/2) Querying package updates... (use install-updates.ps1 to install them)"
|
||
|
& sudo apt update
|
||
|
& sudo apt list --upgradable
|
||
|
"⏳ (2/2) Querying Snap updates... (use install-updates.ps1 to install them)"
|
||
|
sudo snap refresh --list
|
||
|
} else {
|
||
|
Write-Progress "⏳ Querying available software updates..."
|
||
|
" "
|
||
|
& winget upgrade
|
||
|
Write-Progress -completed "."
|
||
|
Write-Host "(use install-updates.ps1 to install these updates)"
|
||
|
}
|
||
|
exit 0 # success
|
||
|
} catch {
|
||
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||
|
exit 1
|
||
|
}
|
||
|
```
|
||
|
|
||
|
*Generated by convert-ps2md.ps1 using the comment-based help of list-updates.ps1*
|