Install OpenSSH under Windows 10 and set Powershell as default shell
Follow below steps for installation of OpenSSH server under Windows 10 OS. List available OpenSSH software for installation: Get-WindowsCapability -Online | ? Name -like 'OpenSSH*' Install OpenSSH client: Add-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0 Install OpenSSH server: Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0 Start OpenSSH service: Start-Service sshd Enable autostart for OpenSSH service: Set-Service -Name sshd -StartupType 'Automatic' Check… Continue reading Install OpenSSH under Windows 10 and set Powershell as default shell