相当于来自powershell的测试连接,在VB.NET上

时间:2013-10-16 13:03:16

标签: vb.net powershell connection ping

我有这段代码:

If (Test-Connection $Computer -Quiet) {
    If ($Computer -eq 'localhost') { #Checks to see if system is localhost and gets its actual Computer name.
        $Computer = ls env:Computername
        $Computer = $Computer.Value
    }

实际上有一个非常好的方法来查看服务器是否响应并返回一个布尔值,如果它确实或没有,这是“Test-Connection $ Computer -Quiet”

VB.NET有一些简单的解决方案吗?

谢谢!

1 个答案:

答案 0 :(得分:1)