• Earn real money by being active: Hello Guest, earn real money by simply being active on the forum — post quality content, get reactions, and help the community. Once you reach the minimum credit amount, you’ll be able to withdraw your balance directly. Learn how it works.

AutoIT Delete Firefox & Chrome Cookies By MR~X[Au3 Src]

Status
Not open for further replies.

F.I.G.H.T.E.R

ϻɵĐęřåŦō&#1136
User
Joined
Mar 26, 2013
Messages
975
Reputation
0
Reaction score
15,790
Points
493
Credits
0
‎12 Years of Service‎
20%
Delete Firefox & Chrome Cookies By MR~X


[
Au3 Src]

[HIDE-THANKS]

Code:
>#cs ----------------------------------------------------------------------------

AutoIt Version: 3.3.12.0
Author:         MR~X

Script Function:
   Delete Firefox & Chrome Cookies

Thanks to :
    Dev-point & autoitscript.com

#ce ----------------------------------------------------------------------------

#RequireAdmin

;_Chrome Cookies
ProcessClose("chrome.exe")
FileDelete(@LocalAppDataDir & "\Google\Chrome\User Data\")
DirRemove(@LocalAppDataDir & "\Google\Chrome\User Data\*.*")

;_Firefox Cookies
ProcessClose("firefox.exe")
DirRemove(@AppDataDir & "\Mozilla\Firefox\Profiles")
FileDelete(@AppDataDir & "\Mozilla\Firefox\profiles.ini")
[/HIDE-THANKS]
 
Status
Not open for further replies.
Back
Top