cypher175 Posted April 11, 2009 Posted April 11, 2009 Is there any function/Code/Script to clear all of Internet Explorer's cookies at all..??
Valuater Posted April 11, 2009 Posted April 11, 2009 Here is an old one, I have not tested for a long time Run('control inetcpl.cpl',"", @SW_HIDE) ; ******* make it hide after checking WinWait('Internet Properties') WinSetState('Internet Properties', '', @SW_HIDE); ****** hide???? ControlClick('Internet Properties', '', 'Button5') WinSetState('Temporary Internet Files and History Settings', '', @SW_HIDE); WinWait('Temporary Internet Files and History Settings') WinSetState('Temporary Internet Files and History Settings', '', @SW_HIDE); ****** hide???? ControlClick('Temporary Internet Files and History Settings', '', 'Edit1') ControlSetText('Temporary Internet Files and History Settings', '', 'Edit1', "128") ; number 8 ???? ControlClick('Temporary Internet Files and History Settings', '', 'Button9') ; click OK 8)
Valuater Posted April 12, 2009 Posted April 12, 2009 Even better... MaXoFFhttp://www.autoitscript.com/forum/index.ph...st&p=6252268)
cypher175 Posted April 12, 2009 Author Posted April 12, 2009 would there be anyway to just delete all the files in "C:\Documents and Settings\@UserName\Cookies" except for the file "index.dat"..??
Valuater Posted April 12, 2009 Posted April 12, 2009 you probably didn't see my second post.but here is another one..http://www.autoitscript.com/forum/index.ph...st&p=6228908)
cypher175 Posted April 12, 2009 Author Posted April 12, 2009 how come this wont work..?? FileDelete(@UserProfileDir&"\Cookies")
Valuater Posted April 12, 2009 Posted April 12, 2009 how come this wont work..?? FileDelete(@UserProfileDir&"\Cookies") Because they are not "really" there as files like you would think. 8)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now