PowerShell/Scripts/install-updates.ps1

42 lines
845 B
PowerShell
Raw Normal View History

2021-09-17 16:14:05 +02:00
<#
.SYNOPSIS
install-updates.ps1
.DESCRIPTION
Installs updates (needs admin rights)
.EXAMPLE
PS> .\install-updates.ps1
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
#Requires -RunAsAdministrator
try {
$StopWatch = [system.diagnostics.stopwatch]::startNew()
if ($IsLinux) {
2021-09-17 16:21:19 +02:00
"Step 1/4: Loading update infos..."
sudo apt update
"Step 2/4: Installing updates..."
sudo apt upgrade
"Step 3/4: Removing obsolete packages..."
sudo apt autoremove
"Step 4/4: Refreshing snap packages..."
sudo snap refresh
2021-09-17 16:14:05 +02:00
} else {
"Sorry, not supported yet"
}
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
"✔️ installed updates in $Elapsed sec"
exit 0
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}