Ping an entire subnet using PowerShell By Mario2022-11-172022-11-17Network, Windows Open PowerShell ISE and write code like this: for($i=1;$i -le 254;$i++){   ping -n 1 192.168.0.$i  }