Skip to content

Instantly share code, notes, and snippets.

@AJ-Acevedo
Created July 17, 2014 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AJ-Acevedo/956c02d3c4f506617df4 to your computer and use it in GitHub Desktop.
Save AJ-Acevedo/956c02d3c4f506617df4 to your computer and use it in GitHub Desktop.
PowerShell script to ping 8.8.8.8 for ten seconds
#PowerShell script to ping 8.8.8.8 for ten seconds
function ping8() {
ping 8.8.8.8
Start-Sleep -s 10
Exit
}
ping8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment