Update install-updates.ps1

This commit is contained in:
Markus Fleschutz 2021-09-28 16:28:53 +02:00
parent ddf5d71967
commit 3b6a408441

View File

@ -2,7 +2,7 @@
.SYNOPSIS .SYNOPSIS
install-updates.ps1 install-updates.ps1
.DESCRIPTION .DESCRIPTION
Installs updates for the local machhine (needs admin rights) Install updates on the local machhine (needs admin rights)
.EXAMPLE .EXAMPLE
PS> ./install-updates PS> ./install-updates
.NOTES .NOTES
@ -17,17 +17,17 @@ try {
$StopWatch = [system.diagnostics.stopwatch]::startNew() $StopWatch = [system.diagnostics.stopwatch]::startNew()
if ($IsLinux) { if ($IsLinux) {
"👉 Step 1/4: Downloading updates for installed Debian packages..." "⏳ Step 1/4: Fetching update infos for installed Debian packages..."
sudo apt update & sudo apt update
"👉 Step 2/4: Upgrading installed Debian packages..." " Step 2/4: Upgrading installed Debian packages..."
sudo apt upgrade -y & sudo apt upgrade -y
"👉 Step 3/4: Removing obsolete Debian packages..." " Step 3/4: Removing obsolete Debian packages..."
sudo apt autoremove & sudo apt autoremove
"👉 Step 4/4: Upgrading installed Snap packages..." " Step 4/4: Upgrading installed Snap packages..."
sudo snap refresh & sudo snap refresh
} else { } else {
"Sorry, not supported yet" "Sorry, not supported yet"
} }