|
|||||||
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
#1 |
|
Member (7 bit)
Join Date: May 2003
Posts: 99
|
Temp folders cleanup
What is a quick and painless way to clean out your TMP and useless files from the following locations on XP?
1. C:\temp 2. C:\WINDOWS\Temp 3. C:\WINDOWS\Temporary Internet Files 4. C:\Documents and Settings\"username"\Local Settings\Temp 5. C:\Documents and Settings\"username"\Local Settings\History 6. C:\Documents and Settings\"username"\Local Settings\Temporary Internet Files 7. C:\Documents and Settings\"username"\Application Data\Microsoft\Office\Recent including any other folders I may have missed, I clean out these folders on a regular basis for our users and need a simple tool to save time. Thanks. |
|
|
|
|
|
#2 |
|
Ride 'em Cowboy
Join Date: Dec 1999
Location: Dallas, Tx
Posts: 9,109
|
The built in Disk CLeanup will zap most of your list.
Your #1 is a user made folder and would have to be cleaned manually or via a batch file. Have never seen #3 on an XP machine.
__________________
Stand Up 2 Cancer - SU2C |
|
|
|
|
|
#3 |
|
Professional gadfly
|
The quickest way to do that is to set up a batch file that will delete all the files in those directories. If you want, you can then set up a scheduled task to run that file on a predetermined schedule.
|
|
|
|
|
|
#4 |
|
Member (2 bit)
Join Date: Jun 2005
Posts: 3
|
Temp folders cleanup
Once or twice a week I use this grouping in my Search engine to do a rather complete cleanup:
*.tmp,~*.*,*.chk and delete most of what's found. joempa |
|
|
|
|
|
#5 |
|
Member (6 bit)
Join Date: May 2005
Location: Sydney Australia
Posts: 54
|
crap cleaner freeware
|
|
|
|
|
|
#6 | |
|
Member (8 bit)
Join Date: Feb 2004
Posts: 153
|
Quote:
|
|
|
|
|
|
|
#7 |
|
Professional gadfly
|
Create a new text file with a BAT extension (like CLEANUP.BAT) and put this in it:
Code:
del /f /s /q C:\temp\*.* del /f /s /q C:\WINDOWS\Temp\*.* del /f /s /q "C:\WINDOWS\Temporary Internet Files\*.*" del /f /s /q "C:\Documents and Settings\username\Local Settings\Temp\*.*" del /f /s /q "C:\Documents and Settings\username\Local Settings\History\*.*" del /f /s /q "C:\Documents and Settings\username\Local Settings\Temporary Internet Files\*.*" del /f /s /q "C:\Documents and Settings\username\Application Data\Microsoft\Office\Recent\*.*" |
|
|
|
|
|
#8 |
|
Member (8 bit)
Join Date: Feb 2004
Posts: 153
|
Cheers!
Is there anyother temp folders that it is safe to manually delete the files from? I did the search joempa said he does and found 600 or more files, ran the MS disk cleanup wizard, ran the search again and still came back with all 600-odd results again.
|
|
|
|
|
|
#9 |
|
Professional gadfly
|
Some applications have their own temp directories. For example, Firefox has a cache directory where it stores its cache. Since it all depends on the programs you have, there are no hard-and-fast rules.
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|