拾遗笔记

自动关闭某些窗口

利用AutoHotKey 关闭某些烦人的广告弹出窗口

原理很简单,某些常见的窗口有其特有的特点,比如窗口标题 ,可以利用AutoHotkey
每隔一定的时间检测一次是否有特定标题的窗口出现,有的话,就地斩于马下。
代码主要用了setTimer 计时器的功能,以及WinColse 关闭特定的窗口

;; 自动关闭某些窗口
#Persistent
#NoTrayIcon
#SingleInstance force
SetWorkingDir %A_ScriptDir%

SetTimer, autocloseWin, 250
return

autocloseWin:
;;qq 广告窗口
WinClose, 腾讯网 - 我的资讯
WinClose, 安全沟通 - 为您提供全面的QQ安全保护
return

Comments

comments powered by Disqus