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

When trying to debug a web application configured to use IIS Express 7.5 in Visual Studio 2010, I received the following error "Unable to launch the IIS Express Web server"

When running from the command line with the /trace:error switch I got the following

C:\Program Files (x86)\IIS Express>iisexpress.exe /trace:error
Starting IIS Express ...
Initializing the W3 Server Started CTC = 1857831
W3 Server initializing WinSock. CTC = 1857847
W3 Server WinSock initialized. CTC = 1857847
W3 Server ThreadPool initialized (ipm has signalled). CTC = 1857847
Failed to call RegisterModule for dll=C:\Program Files (x86)\IIS Express\loghttp.dll, mod=HttpLoggingModule
Failed processing with hr = 800706ba
Error loading global modules. hr = 800706ba
Terminating W3_SERVER object
Start listenerChannel http:0
Initializing the W3 Server Started CTC = 1858845
W3 Server initializing WinSock. CTC = 1858861
W3 Server WinSock initialized. CTC = 1858861
W3 Server ThreadPool initialized (ipm has signalled). CTC = 1858861
Failed to call RegisterModule for dll=C:\Program Files (x86)\IIS Express\loghttp.dll, mod=HttpLoggingModule
Failed processing with hr = 800706ba
Error loading global modules. hr = 800706ba
Terminating W3_SERVER object
InitComplete event signalled
Report ListenerChannel stopped due to failure; ProtocolId:http, ListenerChannelId:0
Process Model Shutdown called
Waiting for all LISTENER_CHANNELS to stop
Failed to start 'HostedWASStart'. Error = 34022648
HostableWebCore activation failed.
Unable to start iisexpress.

Notes -

I have tried uninstalling and re-installing IIS Express 7.5 a number of times with the same results.

I am running a Windows 7 64-bit machine

IIS Express has been working without issue for a number of months now. The issue only started after restarting my computer this morning.

share|improve this question

4 Answers

up vote 12 down vote accepted

A couple of suggestions that may help:

How did you reinstall iis-express? If you haven't done so, you can try re-installing Visual Studio 2010 SP1, which contains iis-express.

Try using process monitor to watch the iis-express process to see if there are any permission issues when attempting to start it.

As a last resort, you can disable the logging module by modifying the applicationhost.config, which is located in the %userprofile%\documents\IISexpress\config directory. To do so you will need to comment out a couple lines in the file.

Under the <system.webServer>/<globalModules> element, comment out the line

<add name="HttpLoggingModule" image="%IIS_BIN%\loghttp.dll" />

Under the <location>/<system.webServer>/<modules> element, comment out the line

<add name="HttpLoggingModule" lockItem="true" /> 

After saving your changes try restarting iis express.

share|improve this answer
1  
I ended up disabling the HttpLoggingModule and now it works – user1684 Jun 7 '11 at 0:36

I got Unable to launch the IIS Express Web server when I tried to run a MVC project created on a UNC path. When I moved the project to the local disk, it started working fine.

share|improve this answer

In my case I had to turn off the Windows Firewall. Seems that firewall is blocking local Webserver to run properly. Even if I try to manually allow WebDev.WebServer40.exe to run through firewall I still get this error.

share|improve this answer
oh dude , thanks , you saved me – Mehran May 24 at 12:28

I had the same errors but for a single account used to install. I had Visual Studio 2010 SP1 with IIS 8 Express in w7 x64. I couldn't change my web project to use IIS Express without VS freezing. I uninstalled IIS 8 Express and installed IIS 7.5 Express which I knew worked on another machine. However, I still got the same problem. After some time trying things out I discovered the IISExpress folder in My Documents was not removed at uninstall. I had to uninstall, manually remove the folder then reinstall. At first start, the IISExpress fodler was recreated and now works as expected. HTH

share|improve this answer

Your Answer

 
discard

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