Copying files from GAC using xcopy or Windows Explorer
Posted
by Rohit Gupta
on Geeks with Blogs
See other posts from Geeks with Blogs
or by Rohit Gupta
Published on Fri, 21 May 2010 21:45:15 GMT
Indexed on
2010/05/21
23:02 UTC
Read the original article
Hit count: 480
use this command for copying files using a wildcard from the GAC to a local folder.
xcopy c:\windows\assembly\Microsoft.SqlServer.Smo*.dll c:\gacdll /s/r/y/c
The above command will continue even it encounters any “Access Denied” errors, thus copying over the required files.
To copy files using the Windows explorer just disable the GAC Cache Viewer by adding a entry to the registry:
Browse to “HKEY_LOCALMACHINE\Software\Microsoft\Fusion”
Add a Dword called DisableCacheViewer. Set the value of it to 1.
© Geeks with Blogs or respective owner