# Windows 10 & Server 2019
# Install the OpenSSH Server
Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0
# Install the OpenSSH Client
Add-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0
# Windows 7 & Server 2008 R2
# Install Chocolatey
if (!(Get-Command choco.exe -ErrorAction SilentlyContinue)) {
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))}
# OpenSSH Server & Client
choco install openssh -y
$env:path += ";C:\Program Files\OpenSSH-Win64"
refreshenv
# Server extra command
New-NetFirewallRule -Name sshd -DisplayName 'OpenSSH Server (sshd)' -Enabled True -Direction Inbound -Protocol TCP -Action Allow -LocalPort 22
# Test SSH Usage
PS C:\Windows\system32> ssh -o FingerprintHash=sha512 sftp.kimconnect.com -p 8282
The authenticity of host '[sftp.kimconnect.com]:8282 ([55.55.55.55]:8282)' can't be established.
RSA key fingerprint is SHA512:+YMCA-YMCA-YMCAmiGaE1eWKK237gogogogogogo.
Are you sure you want to continue connecting (yes/no/[fingerprint])?
Categories: