Register Multiple Assemblies to the GAC in Vista - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T05:08:12Z http://stackoverflow.com/feeds/question/35011 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/35011/register-multiple-assemblies-to-the-gac-in-vista 1 Register Multiple Assemblies to the GAC in Vista Evan 2008-08-29T18:50:51Z 2008-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#35057 2 Answer by Euro Micelli for Register Multiple Assemblies to the GAC in Vista Euro Micelli 2008-08-29T19:05:44Z 2008-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#35064 1 Answer by Daniel Jennings for Register Multiple Assemblies to the GAC in Vista Daniel Jennings 2008-08-29T19:07:26Z 2008-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>