<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Inside My Head &#187; DOS</title>
	<atom:link href="http://checkmyhead.com/tag/dos/feed/" rel="self" type="application/rss+xml" />
	<link>http://checkmyhead.com</link>
	<description>Just imagine the things we don&#039;t post...</description>
	<lastBuildDate>Wed, 30 Mar 2016 12:52:01 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.41</generator>
	<item>
		<title>Ping Host with TimeStamp script</title>
		<link>http://checkmyhead.com/ping-host-with-timestamp-script/</link>
		<comments>http://checkmyhead.com/ping-host-with-timestamp-script/#comments</comments>
		<pubDate>Tue, 19 Mar 2013 18:06:15 +0000</pubDate>
		<dc:creator><![CDATA[Dunrite675]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Batch]]></category>
		<category><![CDATA[DOS]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://checkmyhead.com/?p=335</guid>
		<description><![CDATA[This is a very simple batch file that pings a host. Just double click to run it, enter the IP or computer name you would like to ping, and it will continuously ping that computer, switch, or device with a text file log. It pings 60 times, then gives a summary, then another 60 and [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This is a very simple batch file that pings a host. Just double click to run it, enter the IP or computer name you would like to ping, and it will continuously ping that computer, switch, or device with a text file log. It pings 60 times, then gives a summary, then another 60 and summary, and it keeps going till you stop it. Great if you are going home for the day and want to watch to see if a network or device is dropping at night.</p>
<p>Very useful for determining if you have a bad cable, network traffic, etc.</p>
<p>The log file will automatically output to the same directory you run the script from.</p>
<p>Simply copy this code to a file and name it ping_with_timestamp.bat or whatever you want as long as it ends in .bat or click here to download zipped file containing the script <a href="http://checkmyhead.com/wp-content/uploads/ping_with_timestamp.zip">ping_with_timestamp</a></p>
<p>@echo off<br />
:: Bill Wilson<br />
:: 03-19-2013</p>
<p>setlocal enabledelayedexpansion</p>
<p>set /p ip=&#8221;Enter IP or HOSTNAME: &#8221; %=%<br />
set outfilename=&#8221;ping_timestamp_%ip%.txt&#8221;</p>
<p>echo. ********************************************************<br />
echo ____________________________________________________________ &gt; %outfilename%<br />
echo.&gt;&gt; %outfilename%<br />
echo. Results are logging to %outfilename%<br />
echo. ********************************************************<br />
echo. *** RESTARTING this script will overwrite above file ***<br />
echo. ********************************************************<br />
echo. ** This Window only updates approximately every minute *<br />
echo. ********************************************************</p>
<p>echo. Starting Ping to %ip% %date% at %time% &gt;&gt; %outfilename%<br />
echo ____________________________________________________________ &gt;&gt; %outfilename%<br />
echo.&gt;&gt; %outfilename%<br />
echo.&gt;&gt; %outfilename%<br />
:pingloop</p>
<p>echo working&#8230;<br />
echo %date% at %time% &gt;&gt; %outfilename%</p>
<p>ping -n 60 %ip%&gt;&gt; %outfilename%</p>
<p>echo ____________________________________________________________ &gt;&gt; %outfilename%<br />
echo. &gt;&gt; %outfilename%<br />
echo. &gt;&gt; %outfilename%</p>
<p>GOTO pingloop<br />
END</p>
]]></content:encoded>
			<wfw:commentRss>http://checkmyhead.com/ping-host-with-timestamp-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
