I recently needed to find which IP addresses were active on a subnet to track down a printer. Quickest way was to ping them. function ping-subnet {
param (
[ parameter ( Mandatory = $true ) ]
[ ValidatePattern ( "bd{1,3}.d{1,3}.d{1,3… Read the full text.