13 Years of Service
44%
[HIDE-THANKS]
;~ //////////////////////////
;~ ////
;~ ////
;~ ////
;~ //// Mr.888
;~ ////
;~ //// Delete Cookis Firfox & Chrome
;~ ////
;~ //////////////////////////
Func _Chrome()
ProcessClose("chrome.exe")
Sleep(1000)
If @OSVersion = "WIN_XP" Then
$dPath=(@UserProfileDir & "\Local Settings\Application Data\Google\Chrome\User Data\Default")
$dPath_Cache=(@UserProfileDir & "\Local Settings\Application Data\Google\Chrome\User Data\Default\Cache")
Else
$dPath = (@UserProfileDir & "\AppData\Local\Google\Chrome\User Data\Default")
$dPath_Cache = (@UserProfileDir & "\AppData\Local\Google\Chrome\User Data\Default\Cache")
EndIf
FileDelete($dPath & "" & "Cookies")
FileDelete($dPath & "" & "Cookies-journal")
FileDelete($dPath & "" & "Current Session")
FileDelete($dPath & "" & "History")
FileDelete($dPath & "" & "History-journal")
DirRemove($dPath_Cache, 1)
EndFunc
Func _FireFox()
ProcessClose("firefox.exe")
Sleep(1000)
If @OSVersion = "WIN_XP" Then
DirRemove(@UserProfileDir & "\Application Data\Mozilla\Firefox\Profiles")
FileDelete(@UserProfileDir & "\Application Data\Mozilla\Firefox\profiles.ini")
Else
DirRemove(@AppDataDir & "\Mozilla\Firefox\Profiles")
FileDelete(@AppDataDir & "\Mozilla\Firefox\profiles.ini")
EndIf
EndFunc
[/HIDE-THANKS]
;~ //////////////////////////
;~ ////
;~ ////
This link is hidden for visitors. Please Log in or register now.
;~ ////
;~ //// Mr.888
;~ ////
;~ //// Delete Cookis Firfox & Chrome
;~ ////
;~ //////////////////////////
Func _Chrome()
ProcessClose("chrome.exe")
Sleep(1000)
If @OSVersion = "WIN_XP" Then
$dPath=(@UserProfileDir & "\Local Settings\Application Data\Google\Chrome\User Data\Default")
$dPath_Cache=(@UserProfileDir & "\Local Settings\Application Data\Google\Chrome\User Data\Default\Cache")
Else
$dPath = (@UserProfileDir & "\AppData\Local\Google\Chrome\User Data\Default")
$dPath_Cache = (@UserProfileDir & "\AppData\Local\Google\Chrome\User Data\Default\Cache")
EndIf
FileDelete($dPath & "" & "Cookies")
FileDelete($dPath & "" & "Cookies-journal")
FileDelete($dPath & "" & "Current Session")
FileDelete($dPath & "" & "History")
FileDelete($dPath & "" & "History-journal")
DirRemove($dPath_Cache, 1)
EndFunc
Func _FireFox()
ProcessClose("firefox.exe")
Sleep(1000)
If @OSVersion = "WIN_XP" Then
DirRemove(@UserProfileDir & "\Application Data\Mozilla\Firefox\Profiles")
FileDelete(@UserProfileDir & "\Application Data\Mozilla\Firefox\profiles.ini")
Else
DirRemove(@AppDataDir & "\Mozilla\Firefox\Profiles")
FileDelete(@AppDataDir & "\Mozilla\Firefox\profiles.ini")
EndIf
EndFunc
[/HIDE-THANKS]