PowerShell/Scripts/install-ssh-client.ps1
2021-10-16 16:50:10 +02:00

32 lines
714 B
PowerShell
Executable File

<#
.SYNOPSIS
Installs the SSH client (needs admin rights)
.DESCRIPTION
This script installs the SSH client (needs admin rights).
.EXAMPLE
PS> ./install-ssh-client
.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 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}