Index » Betriebssystem » Windows » Flash cookies
Statt Firefox direkt zu starten, mache ich es über eine Batch Datei, die gleich alle Flash cookies/cache löscht:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
@echo off cd /d c:\ call:clean "%AppData%\Adobe\Flash Player\AssetCache" start Firefox.exe call:clean "%LocalAppData%\Microsoft\Windows\Temporary Internet Files" call:clean "%AppData%\Microsoft\Windows\Cookies\Low" pause goto:eof :clean echo _____________________________________________________________________ echo clean ["%~1\*"] echo on del /q /f /s "%~1\*.*" @echo off echo --------------------------------------------------------------------- FOR /D %%D IN ("%~1\*") DO ( echo on rmdir /s /q "%%D" @echo off ) goto:eof
Wenn man schon mal dabei ist, kann man den IE Cache auch direkt mit löschen ;)
permalink