; ============================================================ ; FlushDnsHotkey.ahk ; ; Ctrl+Alt+D flushes the DNS resolver cache silently and shows a ; confirmation tooltip. ; ; Requirements: AutoHotkey v2 (https://www.autohotkey.com/) ; ============================================================ #Requires AutoHotkey v2.0 ^!d::{ RunWait('ipconfig /flushdns', , "Hide") ToolTip("DNS cache flushed") SetTimer(() => ToolTip(), -1500) }