• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

XP clean cookies, history, cache, temp

mrbass

Senior member
rem WinXP cleans cookies, cache, temp, history
rem put in startup folder and it'll clean each time upon logging in
rem save to text file named something like cleanxp.cmd
@echo on
cd %homedrive%%homepath%
rd /s/q locals~1\tempor~1
rd /s/q locals~1\temp\tempor~1
rd /s/q cookies
rd /s/q temp\cookies
rd /s/q locals~1\history
rd /s/q locals~1\temp\history
rd /s/q recent
md recent
rd /s/q locals~1\temp
md locals~1\temp

---------------------------------------------------------------

rem replace mrbass with your username place in Startup folder for Administrator account
rem XP--Log off all users at welcome screen and hit CTRL-ALT-DEL twice
rem Login and off of Administrator to clean index.dat files every so often
rem save to text file named something like cleanindex.cmd
@echo on
cd c:\docume~1\mrbass
rd /s/q locals~1\tempor~1
rd /s/q locals~1\temp\tempor~1
rd /s/q cookies
rd /s/q temp\cookies
rd /s/q locals~1\history
rd /s/q locals~1\temp\history
rd /s/q recent
md recent
rd /s/q locals~1\temp
md locals~1\temp

-------------------------------------------------------------------

Windows Registry Editor Version 5.00
;save to text named something like url_recent.reg
; cleans IE URL drop down list and recent docs, suggest placing in startup folder
[-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\RecentDocs]
[-HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedURLs]
 
Back
Top