English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I have admin rights and I assume I batch script would be able to do this.

2007-08-22 14:57:07 · 2 answers · asked by coffeegulper 2 in Computers & Internet Other - Computers

2 answers

If you mean "temp" files, as in *.tmp files, then one line will do the trick,

del "\documents and settings\*.tmp" /s

============
If you mean "temporary internet files", then this one line will do, (all on one line -- Yahoo wraps it.) You may need to change the filepaths a bit depending on your local environment.

From a commandline,
---------------------------------
for /d %i in ("c:\documents and settings\*") do for /d %j in ("%i\Local Settings\Temporary Internet Files\Content.IE5\*") do del "%j\." q


From a batch file, (the "%" variable delims have to be doubled)
---------------------------------
for /d %%i in ("c:\documents and settings\*") do for /d %%j in ("%%i\Local Settings\Temporary Internet Files\Content.IE5\*") do @echo del "%%j\." q

2007-08-24 13:34:15 · answer #1 · answered by Kevin 7 · 7 0

I.E.--tools--options--general--temp files
delete

start--my computer--disk drive [ c ]--windows--temp

also prefetch--file--select all--delete

2007-08-22 15:04:12 · answer #2 · answered by Anonymous · 1 3

fedest.com, questions and answers