It's not been very consistent. It was not part of the 1.0 framework redist,
but it showed up if you installed 1.0 framework SP2, but it's not in 1.1 so
it looks like it's really not intended to be part of the redist.
However the question isn't about where it is, but whether it is legal to
ship it - I assume the poster wants to use it to install assemblies in the
GAC and therefore it needs to be in the deployment package.

Signature
Phil Wilson
[MVP Windows Installer]
>
> > I think gacutil.exe is included with .NET framework (in
[quoted text clipped - 5 lines]
> Sorry but gacutil.exe is a part of the .NET framework SDK, not a part
> of the redist package.
Setec Astronomy - 27 Jan 2004 14:48 GMT
> However the question isn't about where it is, but whether it is legal
> to ship it - I assume the poster wants to use it to install
> assemblies in the GAC and therefore it needs to be in the deployment
> package. --
Exactly, can I lagally deploy it?

Signature
I am what I am, I do what I can
Non trovi qualche cosa? http://url.repository.biz/go/1J
Gaurav Khanna [C# MVP] - 28 Jan 2004 07:35 GMT
Hi!
Why would you want to distribute gacutil.exe? Do you wish to deploy your
assemblies at runtime in the GAC?
If so, you could use the GacInstall method of the Publish class in
System.EnterpriseServices.Internal namespace.
Does that help?

Signature
Regards,
Kumar Gaurav Khanna
-----------------------------------------------------------------
Microsoft MVP - C#/.NET, MCSE Windows 2000/NT4, MCP+I
WinToolZone - Spelunking Microsoft Technologies
http://www.wintoolzone.com/
OpSupport - Spelunking Rotor
http://opsupport.sscli.net/
Bangalore .NET Users' Group
http://groups.msn.com/bdotnet/
>
> > However the question isn't about where it is, but whether it is legal
[quoted text clipped - 3 lines]
>
> Exactly, can I lagally deploy it?
Setec Astronomy - 28 Jan 2004 08:43 GMT
> Why would you want to distribute gacutil.exe? Do you wish to deploy
> your assemblies at runtime in the GAC?
Yes.
> If so, you could use the GacInstall method of the Publish class in
> System.EnterpriseServices.Internal namespace.
>
> Does that help?
Excellent! I will use it instead of gacutil.
Thanks.
Setec Astronomy - 28 Jan 2004 15:02 GMT
> > If so, you could use the GacInstall method of the Publish class in
> > System.EnterpriseServices.Internal namespace.
> ...
>
> Excellent! I will use it instead of gacutil.
For completeness:
Add reference to System.EnterpriseServices
using System.EnterpriseServices.Internal;
// ...
String path = Directory.GetCurrentDirectory() + "\\";
Publish p = new Publish();
p.GacInstall(path + "server.dll");

Signature
I am what I am, I do what I can
Non trovi qualche cosa? http://url.repository.biz/go/1J
Jason M. Bower - 02 Feb 2004 19:07 GMT
Gacutil.exe ships as part of the .NET Framework SDK. Unfortunately this
tool is not redistributable. Microsoft recomends creating an installation
package that installs your assemblies to the GAC. The .NET Framework SDK
EULA provides specific imformation on what SDK components are
redistributable.
The .NET Framework SDK can be downloaded from
http://www.microsoft.com/downloads/details.aspx?FamilyID=9b3a2ca6-3647-4070-
9f41-a333c6b9181d&DisplayLang=en.
Thank you,
Jason [MS-SDK]
--------------------
>From: "Phil Wilson" <pdjwilson@nospam.cox.net>
>References: <YYeRb.288097$e6.11182589@twister2.libero.it>
<ORu19RL5DHA.2056@TK2MSFTNGP10.phx.gbl>
<hnrRb.289327$e6.11230939@twister2.libero.it>
>Subject: Re: Can I distribute gacutil.exe?
>Date: Tue, 27 Jan 2004 06:42:11 -0800
[quoted text clipped - 7 lines]
>NNTP-Posting-Host: ip68-96-84-20.oc.oc.cox.net 68.96.84.20
>Path:
cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFTNGXA05.phx.gbl!TK2MSFTNGP08
.phx.gbl!TK2MSFTNGP10.phx.gbl
>Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.framework.sdk:8607
>X-Tomcat-NG: microsoft.public.dotnet.framework.sdk
[quoted text clipped - 15 lines]
>> Sorry but gacutil.exe is a part of the .NET framework SDK, not a part
>> of the redist package.