Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Today I installed VS2010 SP1 Beta, and IIS 7 Express, as I currently have IIS5 on my local development machine and thought I'd try IIS Express out.

I have gone into the properties window for my Web Application, checked the 'Use IIS Express' checkbox, created the Virtual Directory when it has prompted me, but then get the message "Unable to launch the IIS Express Web Server. Port x is in use".

I have tried changing the port number from the default value that was in there, to numerous other port numbers, but whatever value is there, I am always getting this message, and am therefore unable to use the IIS Express Web Server.

Does anyone know what the problem might be, and how to get around it?

share|improve this question

4 Answers

up vote 9 down vote accepted

If you are using ESET NOD32 Anti Virus, you need to change the setting of "Web access protection" => HTTP, HTTPS => Web browsers => red cross the check box of your devnev.exe (This is three state checkboxs, click the check box until red cross appeared)

I have just installed VS 2010 SP1, using the above setting to tell NOD32 to leave 'IIS Express' alone.

Reference: http://weblogs.asp.net/anasghanem/archive/2009/02/01/nod32-antivirus-is-blocking-visual-studio-built-in-development-server.aspx

share|improve this answer
+1 Wow i was always wonder why my dev server port kept changing all the time as it always thought the old port was in use. I had no idea the ESET was messing up the port check by scanning visual studios http traffic. This fixed my worse problem this morning in which i couldn't get visual studio to launch IISExpress on any port. – jbtule Mar 11 '11 at 14:35

What version OS are you using? Are you able to start IIS Express from command line? Could you try the following and post the error message you are seeing.

  1. Remove IISExpress directory located under 'My documents' folder

  2. Go to IIS Express installation folder '%programfiles%\IIS Express' (on 64-bit machine '%programfiles(x86)\IIS Express') and try to start iisexpress.exe from command line (without passing any arguments)

share|improve this answer

I had a similar problem. It seems that if IIS Express is already running a particular site and then you try to run a project that uses that site through Visual Studio it isn't able to attach the debugger. The solution was to close any running instances of IIS Express and WebMatrix and then try running the site through Visual Studio (F5).

I recommend installing WebMatrix as it's the simplest way of managing the sites and port numbers that you are using.

share|improve this answer

You may uninstall IIS 5, or simply configure your IIS 5 web site to use a port other than 80.

IIS Express tries to use port 80, which leads to the conflict.

share|improve this answer
I did stop the World Wide Web Publishing service as I thought there may be a conflict (despite Express specifying port 44300 and various others) but that may no difference. I'd have thought stopping the IIS5 web service would rule out any port conflict? – marcusstarnes Feb 11 '11 at 12:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.