我有这段代码:
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有一些简单的解决方案吗?
谢谢!