Guest User

Untitled

a guest
Jun 25th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. @echo off
  2. echo Checking connection
  3. ping -n 5 www.google.com >nul
  4. if errorlevel 1 (
  5. cls
  6. echo Failed
  7. pause>nul
  8. exit
  9. )
  10.  
  11. cls
  12. echo Success!
  13. pause>nul
  14. exit
Add Comment
Please, Sign In to add comment