728x90
@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)
728x90
'IT이야기 > OS' 카테고리의 다른 글
wuauclt.exe 커맨드 옵션... (0) | 2022.12.07 |
---|---|
Windows Server 평가판 다운로드 Url (1) | 2021.09.10 |
명령프롬프트(cmd)에서 find, findstr 사용법(특정단어찾기) (0) | 2020.02.10 |
특정 프로그램 시작 시간 알아내는 명령어 (0) | 2020.02.06 |
PC 안뜯고 메모리 슬롯 및 정보 알아내기 (0) | 2020.01.20 |