This is a framed page, so what you're getting is the main part (the "toss" script).
The purpose in using frames was to make it easy to "cut and paste" the script
(without indents from table margins), so no "fancy layout" here!
Click here to get back to the Workstation NT homepage.
What to Toss Regularly
Script
assumes one c: drive
@ echo off
:: CLEAN UP TEMP FILES and DIR
:: DON'T USE THIS SECTION IF
:: YOU USE WINWORD AUTOSAVE
del \*.tmp /s >nul 2>&1
rmdir /s c:\temp /q
mkdir c:\temp
:: CLEAN UP HELP FILES
:: GIDs are hidden help file indices
:: FTSs are Help word lists
del \*.gid /s /a:h >nul 2>&1
del \*.fts \*.ftg /s >nul 2>&1
:: CLEAN UP ERROR FILES
del c:\winnt\drwtsn32.log /s /q /f
del c:\winnt\*.dmp /s /q /f
:: CLEAR DOCUMENTS MENU
del "c:\winnt\profiles\{username}\Recent\*.*" /q
:: CLEAN UP IE3
:: assumes default install paths on c: drive
cd c:\winnt\
rmdir /s "Temporary Internet Files" /q
cd c:\winnt\
mkdir "Temporary Internet Files"
del "c:\winnt\Cookies\*.*" /f /q
del "c:\winnt\History\*.*" /f /q
del "c:\winnt\History\*.*" /q /a:h
:: CLEAN UP NETSCAPE 3
del "c:\program files\netscape\navigator\cache\*.*" /q
del "c:\program files\netscape\navigator\cookies.txt" /q
del "c:\program files\netscape\navigator\netscape.hst" /f /q
:: CLEAN UP NETSCAPE COMMUNICATOR
del "c:\program files\netscape\users\{username}\cache\*.*" /f /q
del "c:\program files\netscape\users\{username}\cookies.txt" /q
del "c:\program files\netscape\users\{username}\netscape.hst" /f /q