我正在寻找一种使用VBScript检测并关闭开放系统消息框的方法。

使用以下脚本,我可以将消息带到前台并关闭它:

set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.AppActive "System Settings Change"
WshShell.SendKeys "%N"

问题:我需要一种方法来检测消息框是否正在等待使用VBsciprt进行的用户交互,以便可以将其关闭。

谢谢你

最佳答案

下面的脚本将完全按照我的要求进行。

' Will loop forever checking for the message every half a second
' until it finds the message then it will send Alt-N and quit.

Set wshShell = CreateObject("WScript.Shell")

Do
    ret = wshShell.AppActivate("System Settings Change")
    If ret = True Then
        wshShell.SendKeys "%N"
        Exit Do
    End If
    WScript.Sleep 500
Loop

09-04 08:53