How to Fix OPENSSH failed installation in Windows 10
Execute gpedit.msc (Windows start menu) Navigate to Computer Configuration\Administrative Templates\System Open Specify settings for optional component installation and component repair Select Enabled Also check the box for Download repair content and optional features directly from Windows Update instead of Windows Server Update Services (WSUS) Click APPLY and OK Close gpedit window. Execute powershell (Windows start menu): # Install the OpenSSH Client Add-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0 # Install the OpenSSH Server Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0 Verify install: Get-WindowsCapability -Online | Where-Object Name -like 'OpenSSH*'