Last active
February 26, 2024 02:33
-
-
Save gorbak25/fe90bc2f35afe394477db9d459e11a26 to your computer and use it in GitHub Desktop.
Enable ssh-agent on Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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