Skip to content

Instantly share code, notes, and snippets.

@lazywinadmin
Created September 24, 2015 23:37
Show Gist options
  • Save lazywinadmin/a2d48f0bafb976763b7a to your computer and use it in GitHub Desktop.
Save lazywinadmin/a2d48f0bafb976763b7a to your computer and use it in GitHub Desktop.
Fast Pinger
$ips = 0..255 | %{"192.168.1.$_"}
$t=$ips|%{(New-Object Net.NetworkInformation.Ping).SendPingAsync($_,250)};[Threading.Tasks.Task]::WaitAll($t);$t.Result
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment