|
|||||||
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
#1 |
|
Member (5 bit)
Join Date: Dec 2000
Posts: 25
|
HI,
Just done a little scipt that basically deletes all the cookies in my Windows/Cookie folder, just by clicking oin this file. BUT in the Cookie folder there is one file that does not delete - Index.dat file. Is there a comment I can write into the script that will tell it to ignore that file. At present all I have in the script is:- @echo off @rem This sets all cookie internet files to be deleted and bypasses @rem the confirmation prompt deltree /y C:\Windows\Cookies\ Any help appreciated, Scott |
|
|
|
|
|
#2 |
|
SQL nutcase
|
This does the trick on Win2K. I don' know about Win98, but it's worth the try
Code:
@echo off rem This sets all cookie internet files to be deleted and bypasses rem the confirmation prompt del "C:\Windows\Cookies\*.txt" /Q /F |
|
|
|
|
|
#3 |
|
Member (5 bit)
Join Date: Dec 2000
Posts: 25
|
Excellent, altered slightly to work in Win98. So easy once I thought about it.
Cheers Scott |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|