ycy 发表于 2014-2-12 10:57:07

请问怎样用au3检测是否联网

想做个实用工具但需要网络支持,所以请问下au3写的程序怎样检测该机的网卡驱动是否驱上(台式和笔记本的)并且否联网?

望高手指教,谢谢!

hnfeng 发表于 2014-2-12 11:21:22

可使用 ping 命令检测两个网址,只要有一个能ping通就是已经联网

ycy 发表于 2014-2-12 12:42:10

回复 2# hnfeng

能否给段代码参考下呢?

p7749 发表于 2014-2-12 22:45:14

本帖最后由 p7749 于 2014-2-12 22:47 编辑

看下PING命令的示例 讲的真太明白了.
Example()

Func Example()
    ; Ping AutoIt 网站,超时时间为 250 毫秒.
    Local $iPing = Ping("www.autoitscript.com", 250)

    If $iPing Then ; If a value greater than 0 was returned then display the following message.
      MsgBox(4096, "", "收发时间间隔: " & $iPing & "毫秒.")    ;只要在这里运行要联网的就可以.要PING的网站就选个大的网站就行了.
    Else
      MsgBox(4096, "", "发生了一个错误, @error 值为: " & @error)
    EndIf
EndFunc   ;==>Example
页: [1]
查看完整版本: 请问怎样用au3检测是否联网