aspnet_regiis.exe -ir does not work on windows 8

匿名 (未验证) 提交于 2019-12-03 01:55:01

问题:

I am trying to deploy an ASP.NET MVC3 app to my Windows 8 box with IIS8. When I try to route to the site I get the following error:

Pretty much everything I can find on this issue says to run:

aspnet_regiis.exe -ir

When I run this on my Windows 8 box, I get the following message:

Microsoft Windows [Version 6.2.9200] (c) 2012 Microsoft Corporation. All rights reserved.  C:\Users\Justin>C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -ir Microsoft (R) ASP.NET RegIIS version 4.0.30319.17929 Administration utility to install and uninstall ASP.NET on the local machine. Copyright (C) Microsoft Corporation.  All rights reserved. Start installing ASP.NET (4.0.30319.17929) without changing existing web  applications to use this version of ASP.Net.  This option is not supported on  this version of the operating system.  Administrators should instead install /  uninstall ASP.NET 4.5 with IIS8 using the "Turn Windows Features On/Off" dialog,  the Server Manager management tool, or the dism.exe command line tool.  For more  details please see http://go.microsoft.com/fwlink/?LinkID=216771. Finished installing ASP.NET (4.0.30319.17929) without changing existing web  applications to use this version of ASP.Net.

ASP.NET 4.5 is already installed on my system.

My application runs correctly in Visual Studio, but I can not deploy it to save my life. I am completely at a loss on where to go from here. I have tried both integrated and classic pipeline modes for this site as well.

回答1:

I'm having the same problem. So far I only found this forum thread of which one of the answers states that installing via Web Platform Installer solved the problem, though this doesn't work for me. The IIS ASP.NET 4.5 feature is disabled as it is already installed.

UPDATE: I got it to work finally.

Follow the instructions from this SO question to enable the wcf service in IIS: WCF on IIS8; *.svc handler mapping doesn't work

Here is also some information about how to get the handler mapping installed



回答2:

Run the following command, which will install and register ASP.NET 4.5 in IIS:

dism /online /enable-feature /featurename:IIS-ASPNET45 /all


回答3:

Try this link.. That will help you registering asp.net 4.5 in iis 8... http://support.microsoft.com/kb/2736284



回答4:

what worked for me is: - unchecking the 4.5 and 3.5 in remove/add windows features - restarted the computer - checked the 4.5 and 3.5 in remove/add windows features.

And from that point it all worked again.



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