Reputation: 121
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
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
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