|
Answer» i am WORKING workgroup with 15PC (Modem > Switch > 15PCs)
how can i LIST used ip in DOS ?
(like you know we can list all pc in network using net view command. )You could find systems using NET VIEW in a batch and send that data to a text file and then have the batch read in every "\\systemname" on list and pass that into PING command which would PING -N 1 SYSTEMNAME to display the IP
This is beyond what I can code out for you by example but maybe someone else here may be better at batches like this and code soemthing up for you that would work in this manner or a better manner if something better can be created.
*** Also if you know the names already you can write a 15 lined batch that simply performed 15 PINGS like below:
PING -N 1 SQLServer PING -N 1 Workstation1 PING -N 1 JohnsLaptop PING -N 1 FileServer
and do this for every KNOWN system for 15 lines
|