PowerShell/Scripts/enable-ssh-client.ps1
2021-08-02 20:52:46 +02:00

28 lines
590 B
PowerShell
Executable File

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