Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 383 Bytes

configure-ssh-agent-to-automatically-start.md

File metadata and controls

17 lines (11 loc) · 383 Bytes

Configure SSH Agent To Automatically Start

Category: Windows

By default, Windows does not automatically start the ssh-agent.

To start the SSH agent automatically, enter the following command in PowerShell:

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

Manually start the service:

Start-Service sshd