首页 > 代码库 > 用ahk脚本自动删除flashcookies

用ahk脚本自动删除flashcookies


手动方法(请戳点击打开链接):

  1. 点击桌面左下脚的"开始"键

  2. 打开“控制面板”

  3. 并点击 "flash player" 项 进入


  4. 并点击“全部删除…” 按钮


  5. 点击“删除数据”即可

AHK自动化删除Flashcookie脚本:

;自动删除Flashcookie
;作者:sunwind
;日期:2014年11月15日



run Control.exe C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
WinWait Flash Player 设置管理器
WinActivate Flash Player 设置管理器
;向控件发送空格键
ControlSend, Button5,{Space}, Flash Player 设置管理器 ahk_class #32770, 帮助

;等待指定标题窗口出现
WinWait, 删除 Flash Player 中的所有站点数据 ahk_class #32770, 删除数据
WinActivate, 删除 Flash Player 中的所有站点数据
;向控件发送空格键
ControlSend, Button4,{Space}, 删除 Flash Player 中的所有站点数据 ahk_class #32770, 删除数据
MsgBox ,,,删除完成了!,2



用ahk脚本自动删除flashcookies