Advertisement
mctoon

Network Uptime Logger

Jan 3rd, 2019
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @ECHO OFF
  2. :LOOPSTART
  3. REM ping google dns server: 8.8.8.8
  4. ping 8.8.8.8
  5. REM if ping fails write time to file
  6. IF ERRORLEVEL 1 echo %date% %time% >> noPingLog.txt
  7. REM wait 5 seconds
  8. ping -n 5 127.0.0.1 > nul
  9. GOTO LOOPSTART
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement