yay123
yay123

Reputation: 121

How do I close the ssh-agent.exe for Git?

I want to uninstall Git. But when I try to I get this message:

The following applications use files that need to be removed. Please close them

ssh-agent (PID 8112, closing is required)

Upvotes: 12

Views: 18108

Answers (2)

Amna Haider
Amna Haider

Reputation: 81

Just go to Task Manager and locate the process with the name which is mentioned and just select that process and click the End process button.

Upvotes: 8

Sean Morse
Sean Morse

Reputation: 136

In your case, you could call this from the command line:

taskkill /pid 8112

For further information, see the documentation on taskkill.

Upvotes: 11

Related Questions