Files
cheatsheet-tldr/tldr/gacutil
2025-12-29 00:23:53 +00:00

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`