Comment by jenscow

8 years ago

Yeh, at least provide a command-line method of installing it. If you're the type to install ssh, I'm guessing you're not a typical Windows user who is horrified by the command-prompt.

This is from memory so it might be slightly wrong, but in PowerShell you can write:

Add-WindowsCapability -Online -Name OpenSSH.Client

  • Correct.

       Get-WindowsCapability -Online | Where-Object{$_.Name -like “OpenSSH.Client*”} | ForEach-Object{ Add-WindowsCapability -Online -Name $_.Name}