Copyright Accelerated Ideas 2007 Legacy Blog Posts | Blog Home | .NET Components

How can I remove an assembly from the GAC?


1/9/2007

You can either use the gacutil command line tool and issue the following command:

gacutil /u AssemblyName

Replacing AssemblyName with the assembly name of the component to remove.

OR

You can use the .Net framework configuration tool. Open the tool from:

Start | Control Panel | Administrative Tools

Click the Assembly Cache node on the left to view assemblies. Now, right click an assembly in the list and use the Delete option from the menu.


< Blog Home