mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
22 lines
416 B
Plaintext
22 lines
416 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# 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`
|