PowerShell/Scripts/install-ssh-client.ps1
2022-01-29 12:47:46 +01:00

32 lines
724 B
PowerShell
Executable File

<#
.SYNOPSIS
Installs the SSH client (needs admin rights)
.DESCRIPTION
This PowerShell script installs the SSH client (needs admin rights).
.EXAMPLE
PS> ./install-ssh-client
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#>
#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
}