mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-04 22:38:34 +02:00
28 lines
590 B
PowerShell
Executable File
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
|
|
}
|