Skip to content

Instantly share code, notes, and snippets.

@jasper-lyons
Created February 13, 2016 13:13
Show Gist options
  • Save jasper-lyons/b72014a99fccdbca04f6 to your computer and use it in GitHub Desktop.
Save jasper-lyons/b72014a99fccdbca04f6 to your computer and use it in GitHub Desktop.
@echo off
set/p host=host Address:
set logfile=Log_%host%.log
echo Target Host = %host% >%logfile%
for /f "tokens=*" %%A in ('ping %host% -n 1 ') do (echo %%A>>%logfile% && GOTO Ping)
:Ping
for /f "tokens=* skip=2" %%A in ('ping %host% -n 1 ') do (
echo %date% %time:~0,2%:%time:~3,2%:%time:~6,2% %%A>>%logfile%
echo %date% %time:~0,2%:%time:~3,2%:%time:~6,2% %%A
timeout 1 >NUL
GOTO Ping)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment