UrlRoutingModule is missing in IIS

I am setting up a new server, and the module "UrlRoutingModule-4.0" is missing in the IIS form. I installed the MVC3 update before installing IIS. Realizing my mistake, I removed MVC3 and installed IIS 7 with all the roles of "Application Development": ASP.NET, .NET Extensibility, ASP, etc.

Now when I install MVC3 (AspNetMVC3ToolsUpdateSetup) and I check IIS, there is no UrlRoutingModule-4.0 module. Obviously my MVC3 application is not working. I just get 404s when I try to request a controller.

Did I mess up the MVC3 installation before IIS landed? How can I fix this square?

+4
source share
1 answer

Try the following command to see if it fixes the problem:

c:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -i 

This should reinstall .NET 4 with IIS if you installed them in the wrong order.

+12
source

All Articles