windows Errorlevel在使用ping命令的for循环中始终返回0

ktecyv1j  于 2023-02-16  发布在  Windows
关注(0)|答案(1)|浏览(284)

我正在尝试创建一个批处理脚本,该脚本将按主机名ping机器,将IP和域保存到变量中并显示状态(ON或OFF)。
我怎样才能修复这个代码,使它能正确显示状态?
我的代码总是返回ON,即使pc实际上是OFF。

  1. @echo off
  2. setlocal ENABLEDELAYEDEXPANSION
  3. set hostname=non-existent-hostname
  4. set domain=UNRESOLVED
  5. set ip=UNRESOLVED
  6. for /f "tokens=2,3 delims= " %%b in ('ping -a -4 -n 1 !hostname! ^| find "Pinging"') do (
  7. set domain=%%b
  8. set ip=%%c
  9. )
  10. if errorlevel 1 (
  11. echo !hostname! !ip! [!domain!] is OFF
  12. ) else (
  13. echo !hostname! !ip! [!domain!] is ON
  14. )
  15. pause
xam8gpfp

xam8gpfp1#

我有另一种方法使用这种ping,因为我的机器是法国的。
例如,此批处理脚本ping URLs列表,并使用不同颜色显示其状态(ON/OFF)
URLs"URLS"变量中定义。
该脚本循环遍历URLs,使用StringFormat函数对其进行格式化,使用"ping"命令获取每个URL的IP地址,然后使用PSColor函数用颜色显示每个URL (ON or OFF)的状态。

  1. @echo off
  2. Title Multi-Ping hosts with colors
  3. Set URLS="non-existent-hostname","https://www.google.com","Nothingtotest","https://www.yahoo.com","www.reddit.com",^
  4. "http://www.wikipedia.com","www.stackoverflow.com","www.bing.com","NoBodyHere.com"
  5. setlocal ENABLEDELAYEDEXPANSION
  6. for %%a in (%URLS%) do (
  7. Call :StringFormat "%%~a"
  8. set "ip="
  9. for /f "tokens=2 delims=[]" %%b in ('ping -n 1 !URL!') do set "ip=%%b"
  10. ping -n 1 !URL!>nul && set "msg=!URL! - !ip! ON" && Call :PSColor "!msg!" Green \n || set "msg=!URL! - !ip! OFF" && Call :PSColor "!msg!" Red \n
  11. )
  12. pause & Exit
  13. ::---------------------------------------------------------------------------------
  14. :StringFormat <URL>
  15. (
  16. echo Function StringReplace(Str^)
  17. echo Str = Replace(Str,"http://",""^)
  18. echo Str = Replace(Str,"https://",""^)
  19. echo StringReplace = str
  20. echo End Function
  21. echo wscript.echo StringReplace("%~1"^)
  22. )>"%tmp%\%~n0.vbs"
  23. for /f "delims=" %%a in ('Cscript /nologo "%tmp%\%~n0.vbs"') do ( set "URL=%%~a" )
  24. If Exist "%tmp%\%~n0.vbs" Del "%tmp%\%~n0.vbs"
  25. exit /b
  26. ::---------------------------------------------------------------------------------
  27. :PSColor <String> <Color> <NewLine>
  28. If /I [%3] EQU [\n] (
  29. Powershell Write-Host "`0%~1" -ForegroundColor %2
  30. ) Else (
  31. Powershell Write-Host "`0%~1" -ForegroundColor %2 -NoNewLine
  32. )
  33. Exit /B
  34. ::---------------------------------------------------------------------------------
展开查看全部

相关问题