How to install or uninstall dll in GAC using powershell


In this article we will be seeing how to install or uninstall dll in GAC using powershell script.

In this article

  • Install a dll into GAC using powershell script
  • Uninstall a dll from GAC using powershell script

Powershell Scr ipt:

Set-Alias
Name: Gacutil
Value: C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\gacutil.exe

GAC1.gif

Install a dll:

Gacutil /i D:\anavijai.sample.dll

GAC2.gif

Uninstall a dll:

Gacutil /u anavijai.sample


Similar Articles