Answers for "set up ssh windows 10"

1

how to install ssh in windows 10

# Install ssh client from PowerShell
PS C:> Add-WindowsCapability -Online -Name OpenSSH.Client*
Posted by: Guest on January-13-2022
0

set up ssh windows 10

# Check if installed via Powershell
Get-WindowsCapability -Online | ? name -like "openssh*"

# Install
Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0
Posted by: Guest on January-24-2022

Browse Popular Code Answers by Language