mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 04:24:01 +01:00
32 lines
665 B
PowerShell
32 lines
665 B
PowerShell
|
<#
|
|||
|
.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) {
|
|||
|
apt update && apt upgrade && apt autoremove && snap refresh
|
|||
|
} 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
|
|||
|
}
|