vote up 0 vote down star

Unfortunately, my company's IT policy doesn't allow me admin privileges to my own machine. However, I want to start working ASP.Net MVC; but the installer won't install the framework w/o admin rights. Is there anyway I can install MVC manually; like copying relevant DLLs somewhere, etc. Any constructive advice is greatly appreciated.

flag

71% accept rate
You're going to struggle time and again if you don't have admin rights on your PC. I think at some point your company is going to have to realise that they can't expect developers to do their work without admin rights. – AdamRalph Jan 26 at 17:48
Wow, I agree with previous comment, developers should have full access to their machines. My network admin keeps getting mad at me because I install too much crap on my machine, but that's the nature of our jobs, to try new stuff and decide what's best to solve the problem at hand. – Ricardo Villamil Jan 26 at 18:03
Yeah, if you're a developer I would really see if there's a way to have an exception made for you. I had a similar experience and kept bugging the local network admin manager for approval to install apps (he had to request it from HQ), until he just gave me admin rights and said "be careful". :-) – Lloyd Cotten Jan 26 at 18:37

3 Answers

vote up 2 vote down check

You can download & compile ASP.NET MVC yourself - and either include it as a referenced project, or just grab the resulting binaries and add them to your project like any other DLL.

Look for the link to MVCBetaSource.zip on this page - it's a pretty straightforward build using Visual Studio, and (if I recall correctly) includes the few binaries (System.Web.Abstractions and System.Web.Routing) that aren't part of the MVC source itself.

link|flag
vote up 1 vote down

As of preview 3 or 4, ASP.Net MVC became binnable. What I've done in my solutions is have a 'binary references' folder at the root of the solution and make references to those local files in each project that needs them. You should copy:

  1. System.Web.Abstractions.dll
  2. System.Web.Mvc.dll
  3. System.Web.Routing.dll

Once done, refer to these assemblies and things should work just fine. The biggest hurdle you face is extracting them from the MSI.

link|flag
vote up 0 vote down

MVC is bin deployable, so if .Net 3.5 is installed with SP1 you should be good. Just make sure you mvc dll gets put in your bin folder and deploys out. The tricky part is the wildcard in IIS6, IIS7 will do this automatically but for 6 you need to make a rule, good luck.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.