Another one of Microsoft’s descriptive errors is 0x8ffe2740 when trying to start an FTP or Web Server from the IIS Administration module. The error itself means that there is a port conflict with another service. This is a relatively easy diagnosis, as you should already know what ports your ftp or web servers use.
Use the netstat command in the command console to find out what program is using a particular TCP port. Replace the ## with the port you wish to test. This works on Windows Server 2003 and 2008.
The above command will return a PID (process ID). You will need to match that to a running program or service. Type the following command:
Here is an example using port 21. In this example you can see the “ftpsvc” service is using port 21 through svchost.exe – which is normal. In a client’s machine, it was MSUpdate2.exe that was using port 21 – a piece of malware using an FTP server to serve pirated movies!

leizleho
thanks for this article. Solve my problem with my FTP server.
J.
don’t have Tasklist do you know where I can find it
Thanks
J.
Chris Stinson
Are you using Windows Server 2003? If not, what OS and version are you running?
You can also use Process Explorer to find what service the svchost process with that PID is using.
http://technet.microsoft.com/en-us/sysinternals/bb896653
fouad
Tks its was usefull for me to check the port witch is in use.
Rolando
Thank you very much, this helped me and save my life!!!
I can find the service that was using the port 21, I stop the service and everything worked!!!
Regards!