Skip to content

Instantly share code, notes, and snippets.

@gorbak25
Last active February 26, 2024 02:33
Show Gist options
  • Save gorbak25/fe90bc2f35afe394477db9d459e11a26 to your computer and use it in GitHub Desktop.
Save gorbak25/fe90bc2f35afe394477db9d459e11a26 to your computer and use it in GitHub Desktop.
Enable ssh-agent on Windows
# By default the ssh-agent service is disabled. Configure it to start automatically.
# Make sure you're running as an Administrator.
Get-Service ssh-agent | Set-Service -StartupType Automatic
# Start the service
Start-Service ssh-agent
# This should return a status of Running
Get-Service ssh-agent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment