美文网首页
2021-12-15 powershell import-csv

2021-12-15 powershell import-csv

作者: randyliu6 | 来源:发表于2021-12-22 11:16 被阅读0次

    检测主机的连通性

    foreach ($v in (import-csv .\ODS_D1.csv)) {

    if (Test-Connection -count 1 -quiet $v.ip) {

    $v.name + " OK"

     } else {

     $v.name + " NOT OK"

    }

     }

    相关文章

      网友评论

          本文标题:2021-12-15 powershell import-csv

          本文链接:https://www.haomeiwen.com/subject/nlypfrtx.html