<?xml version="1.0" encoding="UTF-8"?>

<rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule">

<channel>
<title>Need a ping utility  that saves to a log file in No, I Will Not Fix Your #@$!! Computer</title>
<link>http://www.dslreports.com/forum/r20457217</link>
<description></description>
<language>en</language>
<pubDate>Thu, 08 Jan 2009 00:00:09 EDT</pubDate>
<lastBuildDate>Thu, 08 Jan 2009 00:00:09 EDT</lastBuildDate>

<item>
<title>Re: Need a ping utility  that saves to a log file</title>
<link>http://www.dslreports.com/forum/remark,20505687</link>
<description><![CDATA[<A HREF="/useremail/u/570488"><b>TechieZero</b></A> : Since DOS really not has changed much in a few years, its a safe bet that this will work everywhere. You are good to go.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20505687</guid>
<pubDate>Mon, 19 May 2008 10:50:03 EDT</pubDate>
</item>

<item>
<title>Re: Need a ping utility  that saves to a log file</title>
<link>http://www.dslreports.com/forum/remark,20470010</link>
<description><![CDATA[<A HREF="/useremail/u/218745"><b>lordfly</b></A> : Okay thanks to you guys and some previous research for another project here is my final batch file<br><br><blockquote><br> @Echo OFF<br> TITLE Ping Device<br> REM Pinger.CMD<br> REM takes the IP address of %1 and outputs to the %1.txt file the<br> REM line that includes date time pass/fail for ping<br> REM<br> REM<br> REM -------------------------------------------------------------<br><br> IF %1.==. GoTo USAGE<br> Set CURRDATE=%TEMP%\CURRDATE.TMP<br> Set CURRTIME=%TEMP%\CURRTIME.TMP<br> Set CURRPING=%TEMP%\CURRPING.TMP<br><br> DATE /T > %CURRDATE%<br> TIME /T > %CURRTIME%<br> ping -n 1 %1 | find /i "packets" > %CURRPING%<br><br> Set PARSEARG="eol=; tokens=1,2,3,4* delims=/, "<br> For /F %PARSEARG% %%i in (%CURRDATE%) Do SET DDMMYYYY=%%j/%%k/%%l<br><br> Set PARSEARG="eol=; tokens=1,2,3* delims=:, "<br> For /F %PARSEARG% %%i in (%CURRTIME%) Do Set HHMM=%%i:%%j%%k<br><br> Set PARSEARG="EOL=; tokens=1*"<br> FOR /F %PARSEARG% %%i in (%CURRPING%) Do Set PPPP=%%i %%j<br><br> Echo %DDMMYYYY% %HHMM% %PPPP% >>%1.txt<br><br> GoTo END<br><br> :USAGE<br> Echo Usage: Pinger IPaddress<br> Echo Pings IPaddress and oppends results to IPaddress.txt<br><br> GoTo END<br><br> :END<br> REM<br> TITLE Command Prompt<br></blockquote><br><br>I called it pinger.bat but I am not going to put any legal constraints on this because it is just adaptations of everyone's work.  I will modify this to put the output file in a specific directory and may tweak it more, but generally this is all I needed.  Can I be safe that this code would work on pretty much any windows 95/98/NT/2K/XP/VISTA computer?]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20470010</guid>
<pubDate>Mon, 12 May 2008 13:43:57 EDT</pubDate>
</item>

<item>
<title>Re: Need a ping utility  that saves to a log file</title>
<link>http://www.dslreports.com/forum/remark,20469657</link>
<description><![CDATA[<A HREF="/useremail/u/218745"><b>lordfly</b></A> : <div class="bquote"><small>said by  jm <A HREF="/useremail/u/877740"><IMG SRC="http://i.dslr.net/bb/profile.gif" ALT="See Profile" BORDER=0 WIDTH=16 HEIGHT=11></A> :</small><br><br>Here's what I used when we needed something similar done.<br>You can remove the unneeded lines.<br><textarea name="code" class="text" cols=50 rows=10>date /t  &gt;&gt; c:\ping.txt&#012;time /t  &gt;&gt; c:\ping.txt&#012;ping -n 15 google.com &gt;&gt; c:\ping.txt&#012;tasklist /V &gt;&gt; c:\ping.txt&#012;</textarea><!--end code block--> </div>Okay, got date and time, but can it be put on the same line as the result from the ping something like:<br><br>05/12/2008 12:30pm  Packets: Sent = 1, Received = 1, Lost = 0 (0% loss).<br><br>That would be combining yours with Serbtastic's ping.<br><br>Thanks for your help guys.<br>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20469657</guid>
<pubDate>Mon, 12 May 2008 12:34:02 EDT</pubDate>
</item>

<item>
<title>Re: Need a ping utility  that saves to a log file</title>
<link>http://www.dslreports.com/forum/remark,20469636</link>
<description><![CDATA[<A HREF="/useremail/u/218745"><b>lordfly</b></A> : <div class="bquote"><small>said by  Serbtastic <A HREF="/useremail/u/590674"><IMG SRC="http://i.dslr.net/bb/profile.gif" ALT="See Profile" BORDER=0 WIDTH=16 HEIGHT=11></A> :</small><br><br>Just schedule the following batch file once per day:<br><br>@echo off<br>echo %date% %time%>>C:\test.txt<br>ping -n 1 www.dslreports.com | find /i "packets">>C:\test.txt<br><br>From this you get:<br>1. date/time stamp<br>2. one ping (-n 1) to host (www.dslreports.com, you can use an IP here instead)<br>3. one line of output showing failure/success<br><br>All logged to file C:\test.txt (change as required).<br> </div>How simple, just need to modify to append the date/time to the line.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20469636</guid>
<pubDate>Mon, 12 May 2008 12:27:25 EDT</pubDate>
</item>

<item>
<title>Re: Need a ping utility  that saves to a log file</title>
<link>http://www.dslreports.com/forum/remark,20469055</link>
<description><![CDATA[<A HREF="/useremail/u/877740"><b>jm</b></A> : Here's what I used when we needed something similar done.<br>You can remove the unneeded lines.<br><textarea name="code" class="text" cols=50 rows=10>date /t  &gt;&gt; c:\ping.txt&#012;time /t  &gt;&gt; c:\ping.txt&#012;ping -n 15 google.com &gt;&gt; c:\ping.txt&#012;tasklist /V &gt;&gt; c:\ping.txt&#012;</textarea><!--end code block-->]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20469055</guid>
<pubDate>Mon, 12 May 2008 10:27:59 EDT</pubDate>
</item>

<item>
<title>Re: Need a ping utility  that saves to a log file</title>
<link>http://www.dslreports.com/forum/remark,20468975</link>
<description><![CDATA[<A HREF="/useremail/u/590674"><b>Serbtastic</b></A> : Just schedule the following batch file once per day:<br><br>@echo off<br>echo %date% %time%>>C:\test.txt<br>ping -n 1 www.dslreports.com | find /i "packets">>C:\test.txt<br><br>From this you get:<br>1. date/time stamp<br>2. one ping (-n 1) to host (www.dslreports.com, you can use an IP here instead)<br>3. one line of output showing failure/success<br><br>All logged to file C:\test.txt (change as required).]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20468975</guid>
<pubDate>Mon, 12 May 2008 10:09:01 EDT</pubDate>
</item>

<item>
<title>Re: Need a ping utility  that saves to a log file</title>
<link>http://www.dslreports.com/forum/remark,20468742</link>
<description><![CDATA[<A HREF="/useremail/u/218745"><b>lordfly</b></A> : <div class="bquote"><small>said by  yock <A HREF="/useremail/u/246096"><IMG SRC="http://i.dslr.net/bb/profile.gif" ALT="See Profile" BORDER=0 WIDTH=16 HEIGHT=11></A> :</small><br><br>Do you really need the ping results, or do you just need notified when the ping times out?<br> </div>Ah, back to Monday Morning.<br><br>Anyway, the requested idea is to ping the unit once per day.  That means at least once during the day the unit is pinged and the result is logged in a file.  This project is going around the globe, so I am obviously looking for something simple and that can provide a single line of data per day.<br><br>Now personally I would prefer to ping more often because sometimes pings fail due to other reasons, no power, connector comes loose or in the case of wireless, there is excessive moisture in the air which absorbs the signal.<br><br>Thanks for all the replies so far.<br><br>I have one program right now running, don't remember the name, but it e-mails out a daily result with up time and down time.  Pretty cool, but it doesn't log to a file that I can find yet.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20468742</guid>
<pubDate>Mon, 12 May 2008 09:02:24 EDT</pubDate>
</item>

<item>
<title>Re: Need a ping utility  that saves to a log file</title>
<link>http://www.dslreports.com/forum/remark,20465376</link>
<description><![CDATA[<A HREF="/useremail/u/246096"><b>yock</b></A> : Do you really need the ping results, or do you just need notified when the ping times out?]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20465376</guid>
<pubDate>Sun, 11 May 2008 13:10:22 EDT</pubDate>
</item>

<item>
<title>Re: Need a ping utility  that saves to a log file</title>
<link>http://www.dslreports.com/forum/remark,20464470</link>
<description><![CDATA[<A HREF="/useremail/u/1477566"><b>chrisretusn</b></A> : <div class="bquote"><small>said by  tekmunki <A HREF="/useremail/u/532180"><IMG SRC="http://i.dslr.net/bb/profile.gif" ALT="See Profile" BORDER=0 WIDTH=16 HEIGHT=11></A> :</small><br><br><div class="bquote"><small>said by Pingman   :</small><br><br>Once you get the timestamp sorted ure good to go - one less prog to install ;)<br> </div>echo %time% %date% > c:\test.txt<br><br>Just put it all in a batch with your ping script.<br> </div>So you end up with?<br><br>@echo off<br>echo %time% %date% > c:\test.txt<br>ping www.google.com -t > c:\test.txt<br><br>Will not work. The first c:\test.txt will be overwritten by the second one. The batch file needs to be as follows:<br><br>@echo off<br>echo %time% %date% > c:\test.txt<br>ping www.google.com -t >> c:\test.txt<br><br>Note the ">>", this will append the ping output to c:\test.txt<br><br>It is not a good idea to output to c:\, make it a directory of the root.<br><br>The other possible problem with this batch file is it only records when the ping starts, not each ping. After a day or two of running you really have nothing to work with but several 10,000+ pings. Date and time of each ping would allow for a better evaluation of the data. <br><small>--<br>Chris<br><b>Living in Paradise!!</b></small>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20464470</guid>
<pubDate>Sun, 11 May 2008 07:48:02 EDT</pubDate>
</item>

<item>
<title>Re: Need a ping utility  that saves to a log file</title>
<link>http://www.dslreports.com/forum/remark,20463858</link>
<description><![CDATA[<A HREF="/useremail/u/532180"><b>tekmunki</b></A> : <div class="bquote"><small>said by Pingman  :</small><br><br>Once you get the timestamp sorted ure good to go - one less prog to install ;)<br> </div>echo %time% %date% > c:\test.txt<br><br>Just put it all in a batch with your ping script.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20463858</guid>
<pubDate>Sun, 11 May 2008 00:28:57 EDT</pubDate>
</item>

<item>
<title>Re: Need a ping utility  that saves to a log file</title>
<link>http://www.dslreports.com/forum/remark,20460142</link>
<description><![CDATA[<A HREF="/useremail/u/0"><b>anon</b></A> : Go to CMD Prompt<br>type:<br> <br>ping www.google.com > c:\test.txt (4pings)<br><br>or <br><br>ping www.google.com -t > c:\test.txt (continous)<br>^^^^<br>For this instance when you want to stop, make sure you hit ctrl + c instead of just closing the cmd window so that you retain the statistics at the bottom<br><br>All this does is port the results into a txt file in the root directory with the name that you specify<br><br>The only other thing you need is to add timestamps but my mind isnt working at the moment, just do a bit of research<br><br>Once you get the timestamp sorted ure good to go - one less prog to install ;)]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20460142</guid>
<pubDate>Sat, 10 May 2008 01:39:21 EDT</pubDate>
</item>

<item>
<title>Re: Need a ping utility  that saves to a log file</title>
<link>http://www.dslreports.com/forum/remark,20459791</link>
<description><![CDATA[<A HREF="/useremail/u/1033316"><b>Squidii</b></A> : pingem!<br><br>&raquo;<A HREF="http://www.frankenfeld.dk/pingem/eng.html" >www.frankenfeld.dk/pingem/eng.html</A>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20459791</guid>
<pubDate>Fri, 09 May 2008 23:27:45 EDT</pubDate>
</item>

<item>
<title>Re: Need a ping utility  that saves to a log file</title>
<link>http://www.dslreports.com/forum/remark,20459008</link>
<description><![CDATA[<A HREF="/useremail/u/1477566"><b>chrisretusn</b></A> : <div class="bquote"><small>said by  refused <A HREF="/useremail/u/1274901"><IMG SRC="http://i.dslr.net/bb/profile.gif" ALT="See Profile" BORDER=0 WIDTH=16 HEIGHT=11></A>  :</small><br><br>&raquo;<A HREF="http://fping.sourceforge.net/" >fping.sourceforge.net/</A> </div>That is a *nix program. <br><br>This is what I use; same name; different author.<br><br>&raquo;<A HREF="http://www.kwakkelflap.com/fping.html" >www.kwakkelflap.com/fping.html</A><br><br>The batch file I use:<br><textarea name="code" class="text" cols=50 rows=10>@echo off&#012;setlocal&#012;set ping_log=%date%-%time%.log&#012;fping xxx.xxx.xxx.xxx -s 64 -c -D -L %ping_log%&#012;endlocal&#012;exit&#012;</textarea><!--end code block--><br>Here is a sample of the logged output:<br><br><textarea name="code" class="text" cols=50 rows=10>Fast pinger version 2.18&#012;(c) Wouter Dhondt (http://www.kwakkelflap.com)&#012; &#012;Pinging xxx.xxx.xxx.xxx with 64 bytes of data every 1000 ms:&#012; &#012;2008/04/26 18:36:34 : Reply&#91;1&#93; from xxx.xxx.xxx.xxx: bytes=64 time=16.2 ms TTL=125&#012;2008/04/26 18:36:35 : Reply&#91;2&#93; from xxx.xxx.xxx.xxx: bytes=64 time=16.1 ms TTL=125&#012;2008/04/26 18:36:36 : Reply&#91;3&#93; from xxx.xxx.xxx.xxx: bytes=64 time=17.4 ms TTL=125&#012;2008/04/26 18:36:37 : Reply&#91;4&#93; from xxx.xxx.xxx.xxx: bytes=64 time=16.6 ms TTL=125&#012;2008/04/26 18:36:38 : Reply&#91;5&#93; from xxx.xxx.xxx.xxx: bytes=64 time=16.1 ms TTL=125&#012;2008/04/26 18:36:40 : xxx.xxx.xxx.xxx: request timed out&#012;2008/04/26 18:36:40 : Reply&#91;7&#93; from xxx.xxx.xxx.xxx: bytes=64 time=16.5 ms TTL=125&#012;2008/04/26 18:36:41 : Reply&#91;8&#93; from xxx.xxx.xxx.xxx: bytes=64 time=16.3 ms TTL=125&#012;......&#012; &#012;Ping statistics for xxx.xxx.xxx.xxx:&#012;Packets: Sent = 17923, Received = 17902, Lost = 21 (0% loss)&#012;Approximate round trip times in milli-seconds:&#012;Minimum = 15.0 ms, Maximum = 282.0 ms, Average = 17.1 ms&#012; &#012;</textarea><!--end code block--><br><small>--<br>Chris<br><b>Living in Paradise!!</b></small>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20459008</guid>
<pubDate>Fri, 09 May 2008 20:25:02 EDT</pubDate>
</item>

<item>
<title>Re: Need a ping utility  that saves to a log file</title>
<link>http://www.dslreports.com/forum/remark,20457742</link>
<description><![CDATA[<A HREF="/useremail/u/218745"><b>lordfly</b></A> : <div class="bquote"><small>said by  refused <A HREF="/useremail/u/1274901"><IMG SRC="http://i.dslr.net/bb/profile.gif" ALT="See Profile" BORDER=0 WIDTH=16 HEIGHT=11></A> :</small><br><br>&raquo;<A HREF="http://fping.sourceforge.net/" >fping.sourceforge.net/</A><br> </div>Looks promising and simple.  I will let you know.<br><br>Thanks so far for the suggestions. More More]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20457742</guid>
<pubDate>Fri, 09 May 2008 15:32:56 EDT</pubDate>
</item>

<item>
<title>Re: Need a ping utility  that saves to a log file</title>
<link>http://www.dslreports.com/forum/remark,20457525</link>
<description><![CDATA[<A HREF="/useremail/u/1274901"><b>refused</b></A> : &raquo;<A HREF="http://fping.sourceforge.net/" >fping.sourceforge.net/</A>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20457525</guid>
<pubDate>Fri, 09 May 2008 14:42:24 EDT</pubDate>
</item>

<item>
<title>Re: Need a ping utility  that saves to a log file</title>
<link>http://www.dslreports.com/forum/remark,20457515</link>
<description><![CDATA[<A HREF="/useremail/u/218745"><b>lordfly</b></A> : <div class="bquote"><small>said by  Kalford <A HREF="/useremail/u/349292"><IMG SRC="http://i.dslr.net/bb/profile.gif" ALT="See Profile" BORDER=0 WIDTH=16 HEIGHT=11></A> :</small><br><br>PingPlotter has a freeware version but I am not sure about whether it will save to log files.<br><br>If not then their standard version will and it's very affordable.<br><br>&raquo;<A HREF="http://www.pingplotter.com/download.html" >www.pingplotter.com/download.html</A><br> </div>Too much tech.  There has to be a program that just pings and outputs the date/time and response times and/or if it is dead or alive.  It is almost like I need to write one myself.  Something simple that I could deploy to other sites around the world without too much hassle.<br><br>Thanks for the suggestion though.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20457515</guid>
<pubDate>Fri, 09 May 2008 14:41:03 EDT</pubDate>
</item>

<item>
<title>Re: Need a ping utility  that saves to a log file</title>
<link>http://www.dslreports.com/forum/remark,20457366</link>
<description><![CDATA[<A HREF="/useremail/u/349292"><b>Kalford</b></A> : PingPlotter has a freeware version but I am not sure about whether it will save to log files.<br><br>If not then their standard version will and it's very affordable.<br><br>&raquo;<A HREF="http://www.pingplotter.com/download.html" >www.pingplotter.com/download.html</A><br><small>--<br><A HREF="http://www.abitoftheweb.com/gallery/">Through My Eyes</a></small>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20457366</guid>
<pubDate>Fri, 09 May 2008 14:07:55 EDT</pubDate>
</item>

<item>
<title>Need a ping utility  that saves to a log file</title>
<link>http://www.dslreports.com/forum/remark,20457217</link>
<description><![CDATA[<A HREF="/useremail/u/218745"><b>lordfly</b></A> : I have a project where we need to ping a networked device at least once a day (I prefer at least once an hour) to determine if it is still responding.  This project is going to run for about two years.<br><br>A couple of years ago I had a nice free program that did just that, but I have no idea where it is.<br><br>Sure I could use the windows ping and put it in the scheduler, but I only need one line of data per reading and the windows ping utility puts out too much info.<br><br>Can someone please help?<br><br>Thanks,<br>Tony]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20457217</guid>
<pubDate>Fri, 09 May 2008 13:40:09 EDT</pubDate>
</item>

</channel>
</rss>
