mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
34 lines
731 B
PowerShell
Executable File
34 lines
731 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
install-ssh-server.ps1
|
|
.DESCRIPTION
|
|
Installs the SSH server (needs admin rights).
|
|
.EXAMPLE
|
|
PS> .\install-ssh-server.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-server
|
|
} else {
|
|
Add-WindowsCapability -Online -Name OpenSSH.Server*
|
|
Start-Service sshd
|
|
Set-Service -Name sshd -StartupType 'Automatic'
|
|
}
|
|
|
|
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
|
|
"✔️ installed SSH server in $Elapsed sec"
|
|
exit 0
|
|
} catch {
|
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|