PowerShell/Scripts/install-ssh-client.ps1
2021-09-11 11:37:22 +02:00

32 lines
660 B
PowerShell
Executable File

<#
.SYNOPSIS
install-ssh-client.ps1
.DESCRIPTION
Installs the SSH client (needs admin rights).
.EXAMPLE
PS> .\install-ssh-client.ps1
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
#Requires -RunAsAdministrator
try {
$StopWatch = [system.diagnostics.stopwatch]::startNew()
if ($IsLinux) {
apt install openssh-client
} else {
Add-WindowsCapability -Online -Name OpenSSH.Client*
}
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
"✔️ installed SSH client in $Elapsed sec"
exit 0
} catch {
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}