mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 12:34:25 +01:00
42 lines
1.0 KiB
PowerShell
Executable File
42 lines
1.0 KiB
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Installs updates
|
|
.DESCRIPTION
|
|
This PowerShell script installs software updates for the local machine (needs admin rights).
|
|
Use the script 'list-updates.ps1' to list available updates.
|
|
.EXAMPLE
|
|
PS> ./install-updates
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz | License: CC0
|
|
#>
|
|
|
|
try {
|
|
$StopWatch = [system.diagnostics.stopwatch]::startNew()
|
|
|
|
if ($IsLinux) {
|
|
"⏳ (1/4) Querying updates for installed Debian packages..."
|
|
& sudo apt update
|
|
|
|
"⏳ (2/4) Upgrading installed Debian packages..."
|
|
& sudo apt upgrade --yes
|
|
|
|
"⏳ (3/4) Removing obsolete Debian packages..."
|
|
& sudo apt autoremove --yes
|
|
|
|
"⏳ (4/4) Upgrading installed Snap packages..."
|
|
& sudo snap refresh
|
|
} else {
|
|
Write-Progress "⏳ Installing updates..."
|
|
" "
|
|
& winget upgrade --all
|
|
Write-Progress -completed " "
|
|
}
|
|
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
|
|
"✅ installed the updates in $Elapsed sec"
|
|
exit 0 # success
|
|
} catch {
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
} |