I want an administrator to register some .dll's for me, but he would probably prefer not to install the whole sdk. Can he just install gacutil.ex? If so, where can he get it? Do I just email the gacutil.exe file to him and he puts it anywhere he likes on the machine and can then use it?

link|improve this question

1  
He can't. You can't redistribute it, forbidden by the license. Send him a quickie Setup.exe. – Hans Passant Apr 6 '11 at 20:48
1  
Thanks Hans. After continuing my research, I found that the official best practices way is to have a windows installer do it. So that is what I did, I created a simple setup project and all it does is install the assemblies to the GAC. Is this the correct way to do it? Any other suggestions/tips/gotchas? – Richard DesLonde Apr 6 '11 at 21:15
Right, the quickie Setup.exe. Test it. – Hans Passant Apr 6 '11 at 21:17
Yes, my next step is to test it on a virtual test box with the same setup as the production machine. If it works I will send it to the admin. Thanks Hans! – Richard DesLonde Apr 6 '11 at 21:18
feedback

3 Answers

I think gacutil.exe only needs the .Net Framework to run. Sending him the stand-alone exe should normally work.

link|improve this answer
feedback
up vote 0 down vote accepted

Per Hans' comment on my question, it's against the license. The best thing to do here is to create a quick setup.exe or msi which will install the files into the GAC, which I have done.

link|improve this answer
feedback

Also an alternative is to just manually drag and drop the DLL into c:\windows\assembly.

For .net 4, I believe the assembly folder is c:\windows\microsoft.net\assembly - though I haven't tested a simple xcopy addition in this manner on .net 4.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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