There is a package I have to deal with which installs assemblies straight into the GAC (e.g. somewhere deep in %windows%/assembly).
How do I exorcise the actual assembly (the DLL) from the GAC into the normal file system?
Thanks.
|
There is a package I have to deal with which installs assemblies straight into the GAC (e.g. somewhere deep in %windows%/assembly). How do I exorcise the actual assembly (the DLL) from the GAC into the normal file system? Thanks.
| ||||
|
feedback
|
|
I have used the advice from this article to get an assembly from the GAC.
| |||||||
feedback
|
|
The method described here is very easy: Summary from Article:
| |||||
feedback
|
|
Yes. Add DisableCacheViewer Registry Key Create a new dword key under HKLM\Software\Microsoft\Fusion\ with the name DisableCacheViewer and set it’s [DWORD] value to 1. Go back to Windows Explorer to the assembly folder and it will be the normal file system view. | |||
|
feedback
|
|
Easy way I have found is to open the command prompt and browse through the folder you mention until you find the DLL you want - you can then user the copy command to get it out. Windows Explorer has a "helpful" special view of this folder. | |||
feedback
|
|
I think the easiest way is to do it through the command line like David mentions. The only trick is that the .dll isn't simply located at C:\Windows\Assembly. You have to navigate to C:\Windows\Assembly\GAC\[ASSEMBLY_NAME]\[VERSION_NUMBER]_[PUBLIC KEY]. You can then do a copy using: copy [ASSEMBLY_NAME].dll c:\ (or whatever location you want) Hope that helps. | |||
|
feedback
|
|
This MSDN blog post describes three separate ways of extracting a DLL from the GAC. A useful summary of the methods so far given. | |||
|
feedback
|
|
You can just use this FREE tool to extract assemblies from the GAC.. http://www.accelerated-ideas.com/NET/Free-GAC-Extractor-Copy-Dll-Global-Assembly.aspx Its free and copies assemblies from the GAC in seconds.. | |||
|
feedback
|
|
just navigate to C:\Windows find the [assembly] folder right click and select add to archive wait a little vola you have an archive file containing all the assemblies in your GAC | |||
|
feedback
|
|
Open the Command Prompt and Type : cd c:\windows\assembly\GAC_MSIL xcopy . C:\GacDump /s /y This should give the dump of the entire GAC Enjoy! Deepak_k | |||
|
feedback
|
|
One other direction--just unpack the MSI file and get the goodies that way. Saves you from the eventual uninstall . . . | |||
|
feedback
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.