用ahk脚本自己主动删除flashcookies


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

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

  2. 打开“控制面板”

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


  4. 并点击“所有删除…” button


  5. 点击“删除数据”就可以

AHK自己主动化删除Flashcookie脚本:

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



run Control.exe C:WindowsSysWOW64FlashPlayerCPLApp.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



原文地址:https://www.cnblogs.com/lcchuguo/p/4470356.html