1

I registered Mono.WebServer.dll in the GAC with:

C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin\gacutil.exe

Then I wanted to install an additional assembly in the GAC and I got:

gacutil is not a valid win32 application.

I used the same gacutil both times... I restarted and the problem persists.

ckittel
  • 6,478
  • 3
  • 41
  • 71
Stefan Steiger
  • 78,642
  • 66
  • 377
  • 442

1 Answers1

2

Gacutil is bundled with .Net SDK, not with visual studio. Maybe you should try to re install .Net SDK if it needs to and load gacutil from this path : C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bin (make sure the version number matches your system)

AFract
  • 8,868
  • 6
  • 48
  • 70
  • 1
    Thank you - was good advice. Now it works again. What I don't yet understand is why I could install the .NET SDK when it was already installed, and not uninstalled. – Stefan Steiger Nov 09 '10 at 16:37