Unexpected Error 0x8ffe2740 when starting FTP or IIS
Posted By Chris Stinson in Internet Information Server,Security, Viruses, Trojans on April 21, 2010
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!

Related posts:
- Migrating websites from IIS6 to IIS7
- file_get_contents on IIS 6
- Microsoft Windows Server 2003 IIS Log File Format Comparison
- Enabling Ping Replies in Windows Server 2008 and R2
- Windows TCP/IP Service Worm and Uninstalling TCP/IP on a Domain Controller


3 Comments
thanks for this article. Solve my problem with my FTP server.
don’t have Tasklist do you know where I can find it
Thanks
J.
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