I tried the Windows 7, and it deleted the cookies but would not delete the Temp Folder for some reason. My location is called:
C:\Users\x2asnobl\AppData\Local\Microsoft\Windows\Temporary Internet Files
When I went inside the folder there were 2000 files there. But I used the:
:: Delete Temporary Internet Files [ Two Temp location in windows 7 ]
PUSHD "%userprofile%\AppData\Local\Microsoft\Windows\Temporary Internet Files"
For /F "delims=" %%A in ('Dir /B /A:D "*.*"') Do (
ATTRIB -S -H -A "%%A"
RMDIR /S /Q "%%A" 2>nul
ATTRIB +S +H +A "%%A"
)
POPD
PUSHD "%userprofile%\AppData\Local\Microsoft\Windows\Temporary Internet Files\Low"
For /F "delims=" %%A in ('Dir /B /A:D "*.*"') Do (
ATTRIB -S -H -A "%%A"
RMDIR /S /Q "%%A" 2>nul
ATTRIB +S +H +A "%%A"
)
POPD