ContributionsMost RecentMost LikesSolutionsRe: One2Many Script Repository This is the script I was talking about. Here is a small script I use to clear out the junk files (temp, internet etc) off all local profiles. IF "%OS%"=="" GOTO WIN9X @REM - FIND "DOCUMENTS AND SETTINGS" FOLDER: %SYSTEMDRIVE% CD %USERPROFILE%\.. FOR /D %%F IN (*.*) DO DEL /F/S/Q "%%F\LOCAL SETTINGS\TEMP\*.*" FOR /D %%F IN (*.*) DO DEL /F/S/Q "%%F\LOCAL SETTINGS\TEMPORARY INTERNET FILES\*.*" FOR /D %%F IN (*.*) DO DEL /F/S/Q "%%F\COOKIES\*.*" DEL /F/S/Q %WINDIR%\TEMP\*.* DEL /F/S/Q %WINDIR%\*.TMP GOTO END :WIN9X REM - WIN9X systems are currently not supported. :END Takes a while when first run, but daily it's fantastic. Re: One2Many Script Repository Is it unusual that this script 'fails' every time it is run. Most stuff is deleted but there are things that either cannot be found or are in use by another process. I have yet to get a "successful" finish.