Use a one liner to ping all IP addresses in your subnet, to see what devices are on your network. It works, you don't need any extra software, but boy is it slow!
If your subnet doesn't begin with "192.168.1." then replace them with your subnet beginning. It will scan from .1 to .254. Copy to Clipboard
foreach ($i in 1..254) { test-connection 192.168.1.$i -Count 1 -ErrorAction SilentlyContinue}
After it finishes, you can find devices which don't ping by running an ARP command: Copy to Clipboard
arp -a
|