mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-03-20 18:29:51 +01:00
Add list-updates.ps1
This commit is contained in:
parent
9fb528b1c0
commit
f77735e741
28
Scripts/list-updates.ps1
Normal file
28
Scripts/list-updates.ps1
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Lists software updates
|
||||||
|
.DESCRIPTION
|
||||||
|
This PowerShell script lists available updates for the local machine.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./list-updates
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz | License: CC0
|
||||||
|
#>
|
||||||
|
|
||||||
|
try {
|
||||||
|
if ($IsLinux) {
|
||||||
|
"⏳ (1/4) Querying updates for installed Debian packages..."
|
||||||
|
& sudo apt update
|
||||||
|
} else {
|
||||||
|
Write-Progress "⏳ Querying available updates..."
|
||||||
|
" "
|
||||||
|
& winget upgrade
|
||||||
|
Write-Progress -Completed " "
|
||||||
|
}
|
||||||
|
exit 0 # success
|
||||||
|
} catch {
|
||||||
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
exit 1
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user