How to add your private keys to the native Windows SSH client:
powershell
1
2
3
4
5
6
7
8
9
10
11
12
# By default the ssh-agent service is disabled. Configure it to start automatically.# Make sure you're running as an Administrator.Get-Servicessh-agent|Set-Service-StartupTypeAutomatic# Start the serviceStart-Servicessh-agent# This should return a status of RunningGet-Servicessh-agent# Now load your key files into ssh-agentssh-add$env:USERPROFILE\.ssh\id_ecdsa