How to remove "CYGWIN sshd" service from service list in Windows 7?

8

3

I uninstalled CYGWIN from Windows machine, but still I am seeing the name "CYGWIN sshd" in the service list.

see service list screenshot here

This is the steps I have followed to uninstall it,

In the cmd prompt, I run the following commands,

takeown /r /d y /f cygwin

icacls cygwin /t /grant Everyone:F

rmdir /s /q cygwin

Everything was removed successfully, but the name is not removed from the service list. Here my question is how to remove the name from Service list?

Rubanraj Ravichandran

Posted 2015-10-23T04:49:04.960

Reputation: 183

No CYGWIN related items show up in Control Panel->Programs and Features? – Leathe – 2015-10-23T04:52:27.570

Nothing has been there in control panel related to CYGWIN. Uninstall is completed successfully. But the name is still present in service list and the status of the service is stopped. – Rubanraj Ravichandran – 2015-10-23T04:59:38.727

Answers

8

Make sure you follow the steps in the CYGWIN FAQ. If you just want to remove the service from the service list, you can follow these steps from ghacks.net - how to remove services in windows.

To remove a service in Windows:

  1. Open up the Command Prompt (aka cmd) as administrator (elevated privileges).

  2. Type in sc delete "name of service" and hit enter. To get the proper full name of a service, open the Windows Services management listing and double click on the service. The proper service name is under "Service Name: #service name#"

Leathe

Posted 2015-10-23T04:49:04.960

Reputation: 736

2Name of service showed as 'CYGWIN sshd', service name was 'sshd'. – Kieveli – 2016-10-26T18:13:28.953