by David | Sep 29, 2020 | Information Technology, PowerShell
A friend asked me how to ping a /24 subnet the other day. I thought it would be a good little blog post. This is a one-liner. Here we go. 1..254 | ForEach-Object {Test-Connection -ComputerName “10.10.1.$_” -Count 1 | Select-Object...