Hi.
I'm looking for a way to detect and close an open system messagebox with VBScript.
Using the following script, I can bring the message to foreground and close it:
set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.AppActive "System Settings Change"
WshShell.SendKeys "%N"
The Question: I need a way to detect if a messagebox is waiting user interaction using VBsciprt so I can close it.
Thnak you.