Hi can any one help me
I am adding assembly to gac using gacutil -i "assembly path" and it is showing "Assembly successfully added to the cache" but when i am going in "C:\Windows\assembly"(using window 7) but assembly is not showing me i dont know why please ...?

Jignesh TrivediPosted Apr 25, 2012, 11:54 PM
I think reason is
That's because you use the .NET 4.0 version of gacutil.exe. It stores the assembly in a different GAC, the one in c:\windows\microsoft.net\assembly. Where all .NET 4.0 assemblies are stored. There is no shell extension handler for that one, the folders are visible as-is. Navigating them isn't exactly practical.
If the assembly is intended to be used by an app that targets an earlier version of .NET then you should use the .NET 2.0 version of gacutil.exe, stored in C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin
go through
http://stackoverflow.com/questions/3054304/gacutil-exe-successfully-adds-assembly-but-assembly-not-viewable-in-explorer-w
hope this help.