IIS Express 800700c1 error with Visual Studio 2015 ASP.Net MVC

妖精的绣舞 提交于 2019-12-11 01:33:27

问题


This is what happens when I run IIS Express with the config visual studio made for my ASP.Net MVC project. If I run iisexpress.exe with no parameters, that server starts up fine. I don't know how I should hunt this problem down. I think the error code means something is corrupted, but I don't see how that is likely.

Starting IIS Express ...
Initializing the W3 Server Started CTC = 64585693
W3 Server initializing WinSock.  CTC = 64585693
W3 Server WinSock initialized.  CTC = 64585693
W3 Server ThreadPool initialized (ipm has signalled).  CTC = 64585693
Failed processing with hr = 800700c1
Error loading global modules.  hr = 800700c1
Terminating W3_SERVER object
Start listenerChannel http:0
Initializing the W3 Server Started CTC = 64586816
W3 Server initializing WinSock.  CTC = 64586816
W3 Server WinSock initialized.  CTC = 64586816
W3 Server ThreadPool initialized (ipm has signalled).  CTC = 64586816
Failed processing with hr = 800700c1
Error loading global modules.  hr = 800700c1
Terminating W3_SERVER object
InitComplete event signalled
Process Model Shutdown called
Unable TO start iisexpress.

回答1:


This error occurs when you use the wrong bitness of IISExpress for the website. If it is a 32 bit site, use C:\Program Files (x86)\IIS Express\iisexpress.exe; if it is a 64 bit site, use C:\Program Files\IIS Express\iisexpress.exe.



来源:https://stackoverflow.com/questions/35965524/iis-express-800700c1-error-with-visual-studio-2015-asp-net-mvc

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!