Posted to microsoft.public.excel.misc
|
|
Start-up Problem
I have a shortcut on my desktop that points to a .vbs file that I run to clean
up my Temp folder.
http://groups.google.com/groups?thre...%40tkmsftngp02
(By Michael Harris)
Dallman Ross wrote:
In , Dave Peterson
spake thusly:
I don't know of any problems that would be caused by files in
the Recycle bin.
I suggest the problem may have been that the system partition was
nearly full.
But too many files in the windows temp folder can cause trouble.
I don't know of any newsgroups that are dedicated to Batch files.
But you may find some web sites that still offer tips.
Here's one I use about weekly that I made a while ago. It does
rely on the DOS executable "DELTREE", which is not standard with
Windows XP but which can be found in earlier Microsoft releases
and used just fine with XP as well. I put the DELTREE.EXE in
my command path before executing this batch file, which I named
"RM_TMP.BAT":
------------------ start cut here ------------------
@echo off
%SystemDrive%
cd %TEMP%
dir /l /od *tmp | find /i ".tmp"
del *.tmp nul
deltree /y *.tmp nul
pause
------------------ end cut here ------------------
No warranties, express or implied. :-)
Here, I'll run it now; it's been a couple of days, anyway:
10/02/2006 11:06 AM 0 vga1.tmp
10/02/2006 12:43 PM 11,776 vb2f.tmp
10/02/2006 12:43 PM 11,776 vb30.tmp
10/02/2006 12:43 PM 16,384 32.tmp
10/02/2006 12:43 PM 262,144 ~df595e.tmp
10/02/2006 03:35 PM 1,855 tmp43.tmp
10/02/2006 03:35 PM 1,631 tmp44.tmp
10/02/2006 03:35 PM 56,319 tmp45.tmp
10/03/2006 11:40 AM 0 vga2.tmp
10/03/2006 11:52 AM 16,384 ~dffe56.tmp
[50 lines deleted]
10/05/2006 10:33 AM 32,768 ~df1d10.tmp
10/05/2006 10:33 AM 16,384 ~df24ba.tmp
10/05/2006 10:33 AM 262,144 ~dfbace.tmp
10/05/2006 10:33 AM 16,384 ~df2bd4.tmp
10/05/2006 10:33 AM 32,768 ~df3367.tmp
10/05/2006 10:33 AM 16,384 ~df493e.tmp
10/05/2006 10:33 AM 16,384 ~df4ecd.tmp
10/05/2006 12:35 PM 512 ~df391d.tmp
10/05/2006 03:02 PM 512 ~df6684.tmp
10/05/2006 03:05 PM 1,855 tmp19.tmp
10/05/2006 03:05 PM 1,631 tmp1a.tmp
10/05/2006 03:05 PM 56,319 tmp1b.tmp
10/05/2006 03:23 PM 32,768 ~df492d.tmp
10/05/2006 03:24 PM 32,768 ~df74c7.tmp
10/05/2006 03:24 PM 32,768 ~dfb0.tmp
10/05/2006 03:24 PM 32,768 ~df2a6f.tmp
10/05/2006 03:24 PM 32,768 ~df3209.tmp
Press any key to continue . . .
Dallman Ross
--
Dave Peterson
|