Network Discovery

Basic Network Discovery:

C:\> net view /all

C:\> net view \\<hostname>

Basic ping scan and write output to file:

C:> for /L %I in (1,1,254) do ping -w 30 -n 1 192.168. l.%I I find "Reply" >> .txt

Last updated