Ping script

TJ

Distinguished
Apr 6, 2004
256
0
18,780
Archived from groups: microsoft.public.windowsnt.protocol.tcpip (More info?)

Does anyone have a script that ping a series of IP address and send the results to a text file???

Thanks
 
G

Guest

Guest
Archived from groups: microsoft.public.windowsnt.protocol.tcpip (More info?)

Something as simple as:

ping_txt.bat:
ping 192.168.1.101
ping 192.168.1.1

and

text.bat:
call ping_txt.bat>text.txt

will output the results in text.txt.

"TJ" <anonymous@discussions.microsoft.com> a écrit dans le message de
news:677CAF5A-4D0B-48F4-971C-6A8FACF94D43@microsoft.com...
> Does anyone have a script that ping a series of IP address and send the
results to a text file???
>
> Thanks