Last active
May 4, 2026 13:40
-
-
Save tluyben/5ff86d0a6c1c9264e7d515dea7655da0 to your computer and use it in GitHub Desktop.
NoMachine balloon notification killer for Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Requires AutoHotkey v2.0 | |
| SetTimer(KillNoMachine, 500) | |
| KillNoMachine() { | |
| for hwnd in WinGetList() | |
| { | |
| try { | |
| exe := WinGetProcessName("ahk_id " hwnd) | |
| class := WinGetClass("ahk_id " hwnd) | |
| title := WinGetTitle("ahk_id " hwnd) | |
| if (exe = "nxrunner.bin" && class = "QTool" && InStr(title, "NoMachine")) | |
| { | |
| WinClose("ahk_id " hwnd) | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment