Uninstall an Assembly from the GAC
Using the command line

- Open a Visual Studio 2005 command prompt as follows: Click Start, point to All Programs, point to Microsoft Visual Studio 2005, point to Tools, and then click Microsoft Visual Studio 2005 Command Prompt.
- At the command prompt, type the following command:
gacutil /u <fully qualified assembly name>
In this command, assembly name is the name of the assembly to uninstall from the GAC.
The following example removes an assembly named hello.dll from the GAC.
gacutil /u "hello,Version=1.0.0.0, Culture=neutral, PublicKeyToken=0123456789ABCDEF"
Comments
Post a Comment