Oct 252007
This is a script that deletes a lot of temporary internet files without any confirmation.
This removes each subdirectory within “content.ie5″ within each user profile on a machine. It prints the current time, the directory to be removed, and removes the directory.
NOTE: This is just one long line
Advertisement:
- Copy / Paste iedeskall.bat into notepad and save as iedeskall.bat
- Run iedeskall.bat
- Take a break (you deserve it you script kiddie)
TempInternetFilesDeleter.bat
for /d %%d in ("C:\documents and settings\*") do (if exist "%%d\Local Settings\Temporary Internet Files\Content.IE5" for /d %%e in ("%%d\Local Settings\Temporary Internet Files\Content.IE5\*") do (time /t & echo %%e & rd /s /q "%%e"))
