"mg" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> When our Windows 2000 server was configured a few years ago, the C:
> drive was created with 4gb of space. At the time this seemed plenty.
> We recently received a warning about a low free space condition on
> this server. When checking the file allocations, I found one file
> taking up over 1.1GB of space. The file is C:\WINNT\ADVPACK.LOG.
>
> I cannot find any information about this file on the Microsoft web
> site, Google, Altavista or Dogpile. I did find a reference to the file
> in the system registry at
> HKLM\Software\Microsoft\Advanced INF Setup\AdvpackLogFile
>
> 1) What is the purpose of this file? It appears to be growing in size
> by the minute!
I don't know -- my 2003 server has no such thing.
> 2) Can I change the registry data to allocate a new file? If so, can I
> point the file to a different drive? Or must the file be in the
> C:\WINNT directory?
You can also move the following: "Program Files" and "Documents and
Settings" using a LinkD.exe junction point.
You might remove all of the (OLD) uninstall directories with names like
$something$ which are hidden in the WinNT directory:
dir /ad /od $*$
This command will setup to delete it:
for %a in ('dir /ad /od /b $*$') do @echo rd /s /q %a
The above will NOT do the "delete" or "remove directory" but merely
echo the correct commands onto the command screen so you can copy
and pasted them AFTER you determine they are correct.
[ rd /s /q is TOO dangerous to use without checking. ]
Also look for OLD log files in System32\logfiles etc if you have IIS
installed.
--
Herb Martin, MCSE, MVP
http://www.LearnQuick.Com
(phone on web site)