Skip to content

Commit

Permalink
Update powershell.md
Browse files Browse the repository at this point in the history
  • Loading branch information
lebalz authored Dec 6, 2024
1 parent 127d619 commit 25eca65
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/windows/powershell.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,13 @@ set-executionpolicy remotesigned -scope CurrentUser
dir | lolcat
```

## Git / SSH-Agent
Ensure the ssh agent is running on startup:

```powershell
# Make sure you're running as an Administrator
Set-Service ssh-agent -StartupType Automatic
Start-Service ssh-agent
Get-Service ssh-agent
```

0 comments on commit 25eca65

Please sign in to comment.