mirror of
https://github.com/sstent/Scripts.git
synced 2026-01-26 15:12:27 +00:00
6 lines
173 B
Batchfile
6 lines
173 B
Batchfile
@echo off
|
|
for /f "DELIMS=/" %%s in (ping_local.txt) do (
|
|
ping -n 1 %%s
|
|
|
|
IF ERRORLEVEL 1 (echo failed %%s >>ping_local.log) else (echo connected %%s >>ping_local.log )
|
|
) |