Register Multiple Assemblies to the GAC in Vista - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T05:08:12Zhttp://stackoverflow.com/feeds/question/35011http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/35011/register-multiple-assemblies-to-the-gac-in-vista1Register Multiple Assemblies to the GAC in VistaEvan2008-08-29T18:50:51Z2008-08-29T19:14:24Z
<p>I've got a whole directory of dll's I need to register to the GAC. I'd like to avoid registering each file explicitly- but it appears that gacutil has no "register directory" option. Anyone have a fast/simple solution?</p>
http://stackoverflow.com/questions/35011/register-multiple-assemblies-to-the-gac-in-vista/35057#350572Answer by Euro Micelli for Register Multiple Assemblies to the GAC in VistaEuro Micelli2008-08-29T19:05:44Z2008-08-29T19:05:44Z<p>GACUTIL doesn't register DLLs -- not in the "COM" sense. Unlike in COM, GACUTIL copies the file to an opaque directory under %SYSTEMROOT%\assembly and that's where they run from. It wouldn't make sense to ask GACUTIL "register a folder" (not that you can do that with RegSvr32 either).</p>
<p>You can use a batch FOR command such as:</p>
<pre><code>FOR %a IN (C:\MyFolderWithAssemblies\*.dll) DO GACUTIL /i %a
</code></pre>
<p>If you place that in a batch file, you must replace %a with %%a</p>
http://stackoverflow.com/questions/35011/register-multiple-assemblies-to-the-gac-in-vista/35064#350641Answer by Daniel Jennings for Register Multiple Assemblies to the GAC in VistaDaniel Jennings2008-08-29T19:07:26Z2008-08-29T19:14:24Z<p>Here is the script you would put into a batch file to register all of the files in the current directory with Gacutil. You don't need to put it in a batch file (you can just copy/paste it to a Command Prompt) to do it.</p>
<pre><code>FOR %1 IN (*) DO Gacutil /i %1
</code></pre>
<p>Edit: Bah, sorry I was late. I didn't see the previous post when I posted mine.</p>