gacutil is not included in .NET Framework 1.1 Redistributable?

N

None

gacutil seems to be something that users really need on occasion to clear
the download cache.

Is gacutil included in the Redistributable package or the SDK package? It
really should be in the Redistributable if it is not.
 
G

Guest

why would your end users need this capability? besides that, you would have to grant each user admin rights to use the tool (NOT desirable) if it was included.
 
M

mikeb

None said:
gacutil seems to be something that users really need on occasion to clear
the download cache.

Is gacutil included in the Redistributable package or the SDK package? It
really should be in the Redistributable if it is not.

While I agree that gacutil should be part of the runtime package, end
users do already have the capability of managing the GAC through the
..NET Configuration MMC snap-in or using the shell view of \WINDOWS\Assembly.

However, sometimes it's nice to use a command-line tool instead of a GUI.
 
N

None

Assemblies in the download cache CANNOT be deleted using the shell. They
CAN be deleted from the GAC however. That means that gacutil is the only
way to manage the download cache. I don't know about the .NET Config. MMC
though. Is that installed with .NET Framework Redistributable?
 
N

None

Because "stuff happens", that's why. Besides, why should admin rights be
required to clear a CACHE? It's conceptually equivalent to deleting
content in IE's cache. Does that require admin rights?

Joseph said:
why would your end users need this capability? besides that, you would
have to grant each user admin rights to use the tool (NOT desirable) if it
was included.
 
M

mikeb

None said:
Assemblies in the download cache CANNOT be deleted using the shell. They
CAN be deleted from the GAC however. That means that gacutil is the only
way to manage the download cache. I don't know about the .NET Config. MMC
though. Is that installed with .NET Framework Redistributable?

Sorry - I glossed over the bit about the download cache.

The MMC snap-in is installed with the .NET runtime - however, it doesn't
really provide any capabilities over the shell viewer that I know of.
Specifically, it doesn't seem to do anything with the download cache.

If you still want to take a look at it, you can get to it from the Start
Menu:

Programs\Administrative Tools\Microsoft .NET Framework 1.1 Configuration



If you want to write your own utility, the path to the download cache is
specified in:

%USERPROFILE%\Local Settings\Application Data\fusioncache.dat

I don't know where you'd find this file on Win 9x machines that don't
have user profiles set up.

Deleting everything in the directory specified in that file seems to do
the trick on my machine.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top