Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save constructor-s/9296bb73595cd422b0eb6a1465938a8a to your computer and use it in GitHub Desktop.
Save constructor-s/9296bb73595cd422b0eb6a1465938a8a to your computer and use it in GitHub Desktop.
A bat script to keep pinging a target until success and echo the BELL character
@echo off
:repeat
ping 1.1.1.1 -n 1 || goto :repeat
echo Success!
echo 
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment