Skip to content

Instantly share code, notes, and snippets.

@ntrogers
Last active October 15, 2017 19:00
Show Gist options
  • Save ntrogers/e83ef7720cb8cdd92b77f3a79c3f8877 to your computer and use it in GitHub Desktop.
Save ntrogers/e83ef7720cb8cdd92b77f3a79c3f8877 to your computer and use it in GitHub Desktop.
[Windows - Command Line Scripts] #Windows #cmd #batch
# Ping an IP range in Windows
FOR /L %i in (1,1,255) do @ping -n 1 192.168.1.%i | find "Reply"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment