我在多台计算机上运行基于网络的幻灯片演示。我有一个在启动时运行的VBScript,打开IE并以全屏模式导航到特定页面。只要启动时有互联网连接,一切都很有效。如果没有,那么页面永远不会加载。 VBScript中是否有办法每隔几分钟检查一次连接,直到找到连接,然后继续使用脚本?以下是供您参考的代码:
CVXOPT
答案 0 :(得分:2)
参考这个==> Loop a function?
是的,你可以使用这段代码轻松完成:
Option Explicit
Dim MyLoop,strComputer,objPing,objStatus
MyLoop = True
While MyLoop = True
strComputer = "smtp.gmail.com"
Set objPing = GetObject("winmgmts:{impersonationLevel=impersonate}!\\").ExecQuery _
("select * from Win32_PingStatus where address = '" & strComputer & "'")
For Each objStatus in objPing
If objStatus.Statuscode = 0 Then
MyLoop = False
Call MyProgram()
wscript.quit
End If
Next
Pause(10) 'To sleep for 10 secondes
Wend
'**********************************************************************************************
Sub Pause(NSeconds)
Wscript.Sleep(NSeconds*1000)
End Sub
'**********************************************************************************************
Sub MyProgram()
Dim WshShell
set WshShell = WScript.CreateObject("WScript.Shell")
On Error Resume Next
With WScript.CreateObject ("InternetExplorer.Application")
.Navigate "http://www.example.com/slideshow"
.fullscreen = 1
.Visible = 1
WScript.Sleep 10000
End With
On Error Goto 0
End Sub
'**********************************************************************************************
答案 1 :(得分:1)
如果Hackoo的代码不适合您,您可以尝试以下操作。并非所有服务器都会响应ping请求,但您可以发出HTTP请求并查看服务器是否发送了有效响应(状态= 200)。
SELECT ID
FROM Alphabets
GROUP BY ID
HAVING MAX(CASE WHEN Alphabets IN ('A','B') THEN 0 ELSE 1 END) = 0