stefan
stefan

Reputation: 11

Uninstall old version of Microsoft.AnalysisServices.AdomdClient from GAC

I need to uninstall an old version of this DLL from the GAC in order to run an installer, but I receive an "Access Denied" error. Does anybody have an idea on how I can remove this DLL?

Upvotes: 1

Views: 1457

Answers (1)

Cody Gray
Cody Gray

Reputation: 244792

The command you're looking for is:

gacutil.exe /u <assemblyname>

The documentation for gacutil.exe is available here. You obviously will need the SDK for this, gacutil.exe is no longer installed with the .NET Framework.

Also, make sure that you're running the correct version of gacutil.exe. It should match the version of the assembly that you're trying to uninstall.

Finally, make sure that you're running with administrative privileges. You may need to start an elevated command prompt to execute the command.

Upvotes: 1

Related Questions