VS Code

Remote Keep asking for passphrase of SSH key

Setting up the SSH Agent

To enable SSH Agent automatically on Windows, start a local Administrator PowerShell and run the following commands: Make sure you're running as an Administrator

Set-Service ssh-agent -StartupType Automatic
Start-Service ssh-agent
Get-Service ssh-agent

Now the agent will be started automatically on login.

Last updated