I am looking for a simple script (that can be executed in windows platform) to ping all machines, and to write the IP of "On" machines (machines that'll reply) to a text file.

link|improve this question
feedback

3 Answers

nmap -sP

Performs a ping scan (host discovery), then print out the available hosts that responded to the scan. No further testing (such as port scanning or OS detection) is performed.

link|improve this answer
Download at nmap.org/download.html – Zoredache Sep 12 '09 at 21:29
feedback

You can use fping, for example:

/usr/sbin/fping -g 192.168.1.0/24 -a

Will print all IPs answering to ping on the 192.168.1.0/24 network.

link|improve this answer
feedback

Try the following program Netscan, I think this will do what you want..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.