HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

gacutil — Global Assembly Cache (GAC) management utility. More information: <https://manned.org/gacutil>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
assemblymanagementcommandcachegacutilcligacglobal

Problem

How to use the gacutil command: Global Assembly Cache (GAC) management utility. More information: <https://manned.org/gacutil>.

Solution

gacutil — Global Assembly Cache (GAC) management utility. More information: <https://manned.org/gacutil>.

Install the specified assembly into GAC:
gacutil -i {{path/to/assembly.dll}}


Uninstall the specified assembly from GAC:
gacutil -u {{assembly_display_name}}


Print the content of GAC:
gacutil -l

Code Snippets

Install the specified assembly into GAC

gacutil -i {{path/to/assembly.dll}}

Uninstall the specified assembly from GAC

gacutil -u {{assembly_display_name}}

Print the content of GAC

gacutil -l

Context

tldr-pages: common/gacutil

Revisions (0)

No revisions yet.