mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-10 10:48:31 +02:00
Update list-updates.ps1
This commit is contained in:
parent
ea1bb04a49
commit
1a1fa1ab50
@ -1,11 +1,16 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Lists updates
|
||||
Lists new software updates
|
||||
.DESCRIPTION
|
||||
This PowerShell script queries and lists available software updates for the local machine.
|
||||
NOTE: use 'install-updates.ps1' to install the listed updates.
|
||||
Use 'install-updates.ps1' to install the listed updates.
|
||||
.EXAMPLE
|
||||
PS> ./list-updates
|
||||
|
||||
Name Id Version Available Source
|
||||
-----------------------------------------------------------------------------------------------------------------------
|
||||
Git Git.Git 2.41.0 2.41.0.2 winget
|
||||
...
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
.NOTES
|
||||
@ -21,11 +26,11 @@ try {
|
||||
& sudo snap refresh --list
|
||||
} else {
|
||||
" "
|
||||
Write-Progress "⏳ Querying available software updates..."
|
||||
Write-Progress "⏳ Querying new software updates..."
|
||||
& winget upgrade
|
||||
Write-Progress -completed "."
|
||||
}
|
||||
"NOTE: use 'install-updates.ps1' to install the listed updates."
|
||||
"(use 'install-updates.ps1' to install the listed updates)"
|
||||
exit 0 # success
|
||||
} catch {
|
||||
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||
|
Loading…
Reference in New Issue
Block a user