Install Microsoft OpenSSH.Server package from PowerShell and set SSHD service to Automatic

#Install Microsoft OpenSSH.Server package from PowerShell and set SSHD service to Automatic #Just the code: Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0 Get-Service -Name sshd|Set-Service -StartupType ‘Automatic’ Get-Service -Name sshd|Start-Service #The long story… #Add OpenSSH Server capability to Windows 10 and Windows Server 2019 #OpenSSH Server needs to be installed via Remote Desktop Protocol (RDP) or from a … Continue reading Install Microsoft OpenSSH.Server package from PowerShell and set SSHD service to Automatic