To copy or export out a DLL in GAC;
- Launch a Command Prompt
- Browse to GAC_MSIL folder;
- cd c:\windows\assembly\GAC_MSIL
- Each DLL in GAC will have its own folder, thus to get to the DLL, browse to the DLL folder;
- Different version of the DLL will be stored in different sub-folders. To check the available sub-folder enter "dir" in the Command Prompt
- Once identify the sub-folder, navigate into the sub-folder
- Now you are able to export/copy out the DLL in this folder. To do so, use the following code;
- copy *.dll C:\<preferred folder>\
- Done
 |
Exporting DLL from GAC via Command Prompt |
No comments:
Post a Comment