Reboot MVC3 VS2010 SP1

I looked here and the link

+8
visual-studio-2010 asp.net-mvc-3
source share
4 answers

This blog worked as described in the question. I downloaded the standalone MVC3 installer and got the individual files using 7-zip.

In advance, I deleted the ASP.NET web pages with guidance in this post , which talks about removing trailing slashes from the registry.

Now MVC3 is running, and System.Web.Helpers and IDependencyResolver are also detected, which is another reason for reinstalling.

+5
source share

Get a visual studio dvd or download a trial version of iso and mount it. Then run mvc3 setup. I myself launched vs10-kb2483190-x86, and he complained that he did not find vs setup.msi from dvd.

+4
source share

I was not able to install MVC with the same error, and Paul's solution worked for me. Many thanks. However, I did not have to execute Registry mods in my particular case. So,

  • Removing Microsoft ASP.NET Web Pages from Add or Remove Programs
  • Run the setup for MVC 3. This will extract the installation files to C: \ Temp \ ext47334
  • Run C: \ Temp \ ext47334 \ aspnetwebpages.msi
  • Run the rest of msis in C: \ Temp \ ext47334
+2
source share

I had the same problem with a failed installation using the web installer (although it reported success). But in my case, I already installed MVC4 before I tried to install MVC3.

I downloaded the standalone installer, which crashed with the same error as above. Then I tried both options for inserting the VS2010 DVD and changing the registry paths as described, but didn't work. Then I tried to remove the MVC3 stuff from the program and functions in the control panel first. This time the installation went further than before, but failed to install NuGet. So I uninstalled NuGet and ran the installer, this time with success! Then I had to reinstall NuGet by downloading the latest version from http://nuget.org/ .

+1
source share

All Articles