I\'m trying to write a batch file that\'s supposed to find the dynamically assigned IP of my Android phone when it\'s connected to the network (Tenda WiFi router).
So I
I have tried this and it works:
for /L %N in (1,1,254) do start /b ping -n 1 -w 200 192.168.0.%N
provided the phone has ICMP enabled, you should have no problem.