where is gacutil.exe?
Asked Answered
S

5

129

I am using Windows 7 Enterprise 32 bit. I have used Windows command line, and also used VSTS 2008 command line, but when executing gacutil.exe, there is command not found error.

I am wondering whether I need to install gacutil.exe from somewhere or gacutil.exe is located in somewhere else in my computer (I searched my computer, but find several files called gacutil.exe, I do not know which one should be used)?

BTW: I am using .Net 3.5.

Stung answered 3/8, 2010 at 14:26 Comment(2)
See my answer at... #25154524Marolda
You can simply take three files: gacutil.exe, gacutil.exe.config, and gacutlrc.dll from a PC where gacutil is already installed.Ilailaire
A
164

gacutil comes with Visual Studio, not with VSTS. It is part of Windows SDK and can be download separately at http://www.microsoft.com/downloads/details.aspx?FamilyId=F26B1AA4-741A-433A-9BE5-FA919850BDBF&displaylang=en . This installation will have gacutil.exe included. But first check it here

C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin

you might have it installed.

As @devi mentioned

If you decide to grab gacutil files from existing installation, note that from .NET 4.0 is three files: gacutil.exe gacutil.exe.config and 1033/gacutlrc.dll

Allyson answered 3/8, 2010 at 14:34 Comment(4)
beware "only" a gig in size (the download)Interlinear
Here is the link to the .NET 4.0 download: microsoft.com/en-gb/download/details.aspx?id=8279Loner
if you decide to grab gacutil files from existing installation, note that from .NET 4.0 is three files: gacutil.exe gacutil.exe.config and 1033/gacutlrc.dllFrimaire
And of course with 64 bit version of the OS the path is changed slightly, e.g. Windows 2012 Server it is under C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.5.1 ToolsKoerner
E
86
  1. Open Developer Command prompt.
  2. type

where gacutil

Elaterid answered 31/1, 2016 at 13:1 Comment(3)
Why does this have so many upvotes when the typical person who would be asking this question is the one who has to ask it because it isn't in an environment path :/Rima
@ThomasHarris The VS Developer Command Prompt will open with the environment correctly set, for that version of VS.Dither
Thomas, I have just upvoted him! I can't help it.Yourself
W
11

On Windows 2012 R2, you can't install Visual Studio or SDK. You can use powershell to register assemblies into GAC. It didn't need any special installation for me.

Set-location "C:\Temp"
[System.Reflection.Assembly]::Load("System.EnterpriseServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")
$publish = New-Object System.EnterpriseServices.Internal.Publish
$publish.GacInstall("C:\Temp\myGacLibrary.dll")

If you need to get the name and PublicKeyToken see this question.

Wiburg answered 6/5, 2019 at 14:18 Comment(0)
S
6

You can use the version in Windows SDK but sometimes it might not be the same version of the .NET Framework your using, getting you the following error:

Microsoft (R) .NET Global Assembly Cache Utility. Version 3.5.21022.8 Copyright (c) Microsoft Corporation. All rights reserved. Failure adding assembly to the cache: This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded.

In .NET 4.0 you'll need to search inside Microsoft SDK v8.0A, e.g.: C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\bin\NETFX 4.0 Tools (in my case I only have the 32 bit version installed by Visual Studio 2012).

Sup answered 17/11, 2015 at 12:1 Comment(2)
Why does Microsoft bury this in such an obscure place? My Visual Studio 2010 had a short cut to the Command Prompt, but Visual Studio 2013 does have that, and there is no menu option in the IDE (under tools which is where I would expect it) to open up Command Prompt. It feels like the Visual Studio developer eco system has become kind of a mess.Applique
My instance of VS 2013 has it at Tools->Visual Studio Command Prompt. Have a look again. (I would never have thought to look there but for your suggestion, so thank you; hope this helps.)Mcclinton
C
0

You can use gacutil from inside of the "Developer Command Prompt for VS [your version year]". If you use it from there, it's part of the path, so no need to find its location.

Searching "Developer Command Prompt" from the search bar in Windows should pop it up as the first option.

Candracandy answered 25/7, 2023 at 15:33 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.