Unsolved
This post is more than 5 years old
6 Posts
0
2412
September 16th, 2007 13:00
Internet log files
I use win 98 SE on Dell XpsT500.
I see a lot of files with names like this :
xDB9092.TMP
Which are taking up a LOT of space.
Can they safely be deleted ?
Veblen
No Events found!


tomron
2 Intern
•
966 Posts
0
September 16th, 2007 14:00
Message Edited by tomron on 09-16-2007 04:13 PM
Veblen
6 Posts
0
September 16th, 2007 14:00
jimmymac_4
155 Posts
0
September 16th, 2007 18:00
JRosenfeld
2 Intern
•
4.4K Posts
0
September 16th, 2007 20:00
The delete option in internet explorer deletes the temporary internet files. The .tmp files are not in the same folder. You can delete them manually in Windows Explorer (they will be in a folder called Temp, of which there will be several on your PC), or use one or other utility the others have mentioned
Veblen
6 Posts
0
September 16th, 2007 20:00
RoHe
12 Elder
•
45.2K Posts
•
172.6K Points
0
September 17th, 2007 03:00
Ron
Stripe1966
21 Posts
0
September 17th, 2007 19:00
tomron
2 Intern
•
966 Posts
0
September 17th, 2007 21:00
jimmymac_4
155 Posts
0
September 19th, 2007 21:00
Two different types of temporary file are being discussed here ... temporary files with the file extension .TMP and Temporary Internet Files (TIF). Temporary files with the extension .TMP are created by various different software applications and are safe to delete. Deleting IE temporary internet files is a rather complicated task because of the way these particular files are stored. To learn about this ... enter INDEX.DAT as your search argument in your search engine of choice and you'll see what I mean. For those of you that still have DOS based Win98 system, I have a batch file that I wrote a long time back and used for many years to delete IE internet debris and more, including some registry entries. It must be executed in native mode, meaning not from a DOS window within Windows. It can be invoked or embedded (added to) the autoexec.bat file to automatically delete temporary internet file and more. Some words of caution though. The Windows Temp folder/directory is often used to complete software installation at bootup and deleting its contents and undermine the successful completion of an install. In addition, there is such a thing as good cookies (for instance on-line banking registration information) that will be deleted requiring the deleted cookies to be reinstated. Such cookies should be identified, and backed up so they can be restored. The batch file could be expanded upon to backup and even restore backed up cookies. Feel free to delete any line that deletes something that you wish not to be deleted.
@ECHO OFF
REM -------------------- Win9x / IE4-6 ---------------------
REM The following will be purged: Internet Explorer Cookies,
REM Temporary Internet Files (Cache), History, Typed URLs,
REM Downloaded Programs, Offline Web Pages, and Windows Temp
REM (remove REM), Recent (Documents), Recycle Bin folders
REM and various Most Recently Used lists in the registry
REM --------------------------------------------------------
CLS
IF EXIST C:\TEMPOR~1 DELTREE /Y C:\TEMPOR~1 > NUL
IF EXIST C:\COOKIES DELTREE /Y C:\COOKIES > NUL
IF EXIST C:\HISTORY DELTREE /Y C:\HISTORY > NUL
IF EXIST C:\WINDOWS\TEMPOR~1 DELTREE /Y C:\WINDOWS\TEMPOR~1 > NUL
IF EXIST C:\WINDOWS\COOKIES DELTREE /Y C:\WINDOWS\COOKIES > NUL
IF EXIST C:\WINDOWS\HISTORY DELTREE /Y C:\WINDOWS\HISTORY > NUL
IF EXIST C:\WINDOWS\TEMP\TEMPOR~1 DELTREE /Y C:\WINDOWS\TEMP\TEMPOR~1 > NUL
IF EXIST C:\WINDOWS\TEMP\COOKIES DELTREE /Y C:\WINDOWS\TEMP\COOKIES > NUL
IF EXIST C:\WINDOWS\TEMP\HISTORY DELTREE /Y C:\WINDOWS\TEMP\HISTORY > NUL
IF EXIST C:\WINDOWS\APPLIC~1\TEMPOR~1 DELTREE /Y C:\WINDOWS\APPLIC~1\TEMPOR~1 > NUL
IF EXIST C:\WINDOWS\APPLIC~1\COOKIES DELTREE /Y C:\WINDOWS\APPLIC~1\COOKIES > NUL
IF EXIST C:\WINDOWS\APPLIC~1\HISTORY DELTREE /Y C:\WINDOWS\APPLIC~1\HISTORY > NUL
IF EXIST C:\WINDOWS\LOCALS~1\TEMPOR~1 DELTREE /Y C:\WINDOWS\LOCALS~1\TEMPOR~1 > NUL
IF EXIST C:\WINDOWS\LOCALS~1\COOKIES DELTREE /Y C:\WINDOWS\LOCALS~1\COOKIES > NUL
IF EXIST C:\WINDOWS\LOCALS~1\HISTORY DELTREE /Y C:\WINDOWS\LOCALS~1\HISTORY > NUL
IF EXIST C:\WINDOWS\DOWNLO~1\. DELTREE /Y C:\WINDOWS\DOWNLO~1\. > NUL
IF EXIST C:\WINDOWS\OFFLIN~1\. DELTREE /Y C:\WINDOWS\OFFLIN~1\. > NUL
REM DELTREE /Y C:\WINDOWS\TEMP\. > NUL
DELTREE /Y C:\WINDOWS\RECENT\. > NUL
DELTREE /Y C:\RECYCLED\. > NUL
ECHO REGEDIT4 > C:\RegClear.reg
ECHO. >> C:\RegClear.reg
ECHO [-HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedTypedURLs] >> C:\RegClear.reg
ECHO. >> C:\RegClear.reg
ECHO [-HKEY_USERS\.DEFAULT\Software\Microsoft\Internet Explorer\TypedTypedURLs] >> C:\RegClear.reg
ECHO. >> C:\RegClear.reg
ECHO [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Applets\Wordpad\Recent File List] >> C:\RegClear.reg
ECHO. >> C:\RegClear.reg
ECHO [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\RecentDocs] >> C:\RegClear.reg
ECHO. >> C:\RegClear.reg
ECHO [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU] >> C:\RegClear.reg
ECHO. >> C:\RegClear.reg
ECHO [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Doc Find Spec MRU] >> C:\RegClear.reg
ECHO. >> C:\RegClear.reg
ECHO [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\StreamMRU] >> C:\RegClear.reg
ECHO. >> C:\RegClear.reg
ECHO [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\OCXStreamMRU] >> C:\RegClear.reg
ECHO. >> C:\RegClear.reg
ECHO [-HKEY_CURRENT_USER\Software\Microsoft\MediaPlayer\Player\RecentURLList] >> C:\RegClear.reg
ECHO. >> C:\RegClear.reg
ECHO [-HKEY_CURRENT_USER\Software\Microsoft\MediaPlayer\Player\RecentFileList] >> C:\RegClear.reg
ECHO. >> C:\RegClear.reg
ECHO [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\ComDlg32\LastVisitedMRU] >> C:\RegClear.reg
ECHO. >> C:\RegClear.reg
ECHO [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\ComDlg32\OpenSaveMRU] >> C:\RegClear.reg
ECHO. >> C:\RegClear.reg
ECHO [-HKEY_CURRENT_USER\InstallLocationsMRU] >> C:\RegClear.reg
REGEDIT /S C:\RegClear.reg
DEL C:\RegClear.reg