<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Script and Batch File</title>
	<atom:link href="http://writescript.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://writescript.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Mon, 27 Oct 2008 17:40:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='writescript.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Script and Batch File</title>
		<link>http://writescript.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://writescript.wordpress.com/osd.xml" title="Script and Batch File" />
	<atom:link rel='hub' href='http://writescript.wordpress.com/?pushpress=hub'/>
		<item>
		<title>VBScript CDate Function</title>
		<link>http://writescript.wordpress.com/2008/10/27/vbscript-cdate-function/</link>
		<comments>http://writescript.wordpress.com/2008/10/27/vbscript-cdate-function/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 17:40:09 +0000</pubDate>
		<dc:creator>programmervb</dc:creator>
				<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://writescript.wordpress.com/?p=60</guid>
		<description><![CDATA[The CDate function converts a valid date and time expression to type Date, and returns the result. Tip: Use the IsDate function to determine if date can be converted to a date or time. Note: The IsDate function uses local setting to determine if a string can be converted to a date (&#8220;January&#8221; is not [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=writescript.wordpress.com&amp;blog=4505306&amp;post=60&amp;subd=writescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The CDate function converts a valid date and time expression to type Date, and returns the result.</p>
<p><strong>Tip:</strong> Use the IsDate function to determine if date can be converted to a date or time.</p>
<p><strong>Note:</strong> The IsDate function uses local setting to determine if a string  can be converted to a date (&#8220;January&#8221; is not a month in all languages.)</p>
<h3>Syntax</h3>
<table class="ex" border="1" cellspacing="0" cellpadding="3" width="100%">
<tbody>
<tr>
<td>
<pre>CDate(date)</pre>
</td>
</tr>
</tbody>
</table>
<table class="ex" border="1" cellspacing="0" cellpadding="3" width="100%">
<tbody>
<tr>
<th width="20%" align="left" valign="top">Parameter</th>
<th width="80%" align="left" valign="top">Description</th>
</tr>
<tr>
<td valign="top">date</td>
<td valign="top">Required. Any valid date expression (like Date()  or Now())</td>
</tr>
</tbody>
</table>
<h3>Example 1</h3>
<table class="ex" border="1" cellspacing="0" cellpadding="3" width="100%">
<tbody>
<tr>
<td>
<pre>d="April 22, 2001"
if IsDate(d) then
  document.write(CDate(d))
end if</pre>
<pre>Output:</pre>
<pre>2/22/01</pre>
</td>
</tr>
</tbody>
</table>
<h3>Example 2</h3>
<table class="ex" border="1" cellspacing="0" cellpadding="3" width="100%">
<tbody>
<tr>
<td>
<pre>d=#2/22/01#
if IsDate(d) then
  document.write(CDate(d))
end if</pre>
<pre>Output:</pre>
<pre>2/22/01</pre>
</td>
</tr>
</tbody>
</table>
<h3>Example 3</h3>
<pre>d="3:18:40 AM"
if IsDate(d) then
  document.write(CDate(d))
end if</pre>
<pre>Output:</pre>
<pre>3:18:40 AM</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/writescript.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/writescript.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/writescript.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/writescript.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/writescript.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/writescript.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/writescript.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/writescript.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/writescript.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/writescript.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/writescript.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/writescript.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/writescript.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/writescript.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=writescript.wordpress.com&amp;blog=4505306&amp;post=60&amp;subd=writescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://writescript.wordpress.com/2008/10/27/vbscript-cdate-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2674707c280c919927848f4ac76e810e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ed</media:title>
		</media:content>
	</item>
		<item>
		<title>VBScript Date Function</title>
		<link>http://writescript.wordpress.com/2008/10/27/vbscript-date-function/</link>
		<comments>http://writescript.wordpress.com/2008/10/27/vbscript-date-function/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 17:39:05 +0000</pubDate>
		<dc:creator>programmervb</dc:creator>
				<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://writescript.wordpress.com/?p=58</guid>
		<description><![CDATA[The Date function returns the current system date. Syntax Date Example 1 document.write("The current system date is: ") document.write(Date) Output: The current system date is: 1/14/2002<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=writescript.wordpress.com&amp;blog=4505306&amp;post=58&amp;subd=writescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The Date function returns the current system date.</p>
<h3>Syntax</h3>
<table class="ex" border="1" cellspacing="0" cellpadding="3" width="100%">
<tbody>
<tr>
<td>
<pre>Date</pre>
</td>
</tr>
</tbody>
</table>
<h3>Example 1</h3>
<table class="ex" border="1" cellspacing="0" cellpadding="3" width="100%">
<tbody>
<tr>
<td>
<pre>document.write("The current system date is: ")
document.write(Date)</pre>
<pre>Output:</pre>
<pre>The current system date is: 1/14/2002</pre>
</td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/writescript.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/writescript.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/writescript.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/writescript.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/writescript.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/writescript.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/writescript.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/writescript.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/writescript.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/writescript.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/writescript.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/writescript.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/writescript.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/writescript.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=writescript.wordpress.com&amp;blog=4505306&amp;post=58&amp;subd=writescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://writescript.wordpress.com/2008/10/27/vbscript-date-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2674707c280c919927848f4ac76e810e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ed</media:title>
		</media:content>
	</item>
		<item>
		<title>VBScript DateAdd Function</title>
		<link>http://writescript.wordpress.com/2008/10/27/vbscript-dateadd-function/</link>
		<comments>http://writescript.wordpress.com/2008/10/27/vbscript-dateadd-function/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 17:37:55 +0000</pubDate>
		<dc:creator>programmervb</dc:creator>
				<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://writescript.wordpress.com/?p=56</guid>
		<description><![CDATA[The DateAdd function returns a date to which a specified time interval has been added. Syntax DateAdd(interval,number,date) Parameter Description interval Required. The interval you want to addCan take the following values: yyyy &#8211; Year q &#8211; Quarter m &#8211; Month y &#8211; Day of year d &#8211; Day w &#8211; Weekday ww &#8211; Week of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=writescript.wordpress.com&amp;blog=4505306&amp;post=56&amp;subd=writescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The DateAdd function returns a date to which a specified time interval has been added.</p>
<h3>Syntax</h3>
<table class="ex" border="1" cellspacing="0" cellpadding="3" width="100%">
<tbody>
<tr>
<td>
<pre>DateAdd(interval,number,date)</pre>
</td>
</tr>
</tbody>
</table>
<table class="ex" border="1" cellspacing="0" cellpadding="3" width="100%">
<tbody>
<tr>
<th width="20%" align="left" valign="top">Parameter</th>
<th width="80%" align="left" valign="top">Description</th>
</tr>
<tr>
<td valign="top">interval</td>
<td valign="top">Required. The interval you want to addCan take the      following values:</p>
<ul>
<li>yyyy &#8211; Year</li>
<li>q &#8211; Quarter</li>
<li>m &#8211; Month</li>
<li>y &#8211; Day of year</li>
<li>d &#8211; Day</li>
<li>w &#8211; Weekday</li>
<li>ww &#8211; Week of year</li>
<li>h &#8211; Hour</li>
<li>n &#8211; Minute</li>
<li>s &#8211; Second</li>
</ul>
</td>
</tr>
<tr>
<td valign="top">number</td>
<td valign="top">Required. The number of interval you want to add. Can      either be positive, for dates in the future, or negative, for dates in the      past</td>
</tr>
<tr>
<td valign="top">date</td>
<td valign="top">Required. Variant or literal representing the date to      which interval is added</td>
</tr>
</tbody>
</table>
<h3>Example 1</h3>
<table class="ex" border="1" cellspacing="0" cellpadding="3" width="100%">
<tbody>
<tr>
<td>
<pre>'Add one month to January 31, 2000
document.write(DateAdd("m",1,"31-Jan-00"))</pre>
<pre>Output:</pre>
<pre>2/29/2000</pre>
</td>
</tr>
</tbody>
</table>
<h3>Example 2</h3>
<table class="ex" border="1" cellspacing="0" cellpadding="3" width="100%">
<tbody>
<tr>
<td>
<pre>'Add one month to January 31, 2001
document.write(DateAdd("m",1,"31-Jan-01"))</pre>
<pre>Output:</pre>
<pre>2/28/2001</pre>
</td>
</tr>
</tbody>
</table>
<h3>Example 3</h3>
<pre>'Subtract one month from January 31, 2001
document.write(DateAdd("m",-1,"31-Jan-01"))</pre>
<pre>Output:</pre>
<pre>12/31/2000</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/writescript.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/writescript.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/writescript.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/writescript.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/writescript.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/writescript.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/writescript.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/writescript.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/writescript.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/writescript.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/writescript.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/writescript.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/writescript.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/writescript.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=writescript.wordpress.com&amp;blog=4505306&amp;post=56&amp;subd=writescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://writescript.wordpress.com/2008/10/27/vbscript-dateadd-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2674707c280c919927848f4ac76e810e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ed</media:title>
		</media:content>
	</item>
		<item>
		<title>VBScript The DateSerial Function</title>
		<link>http://writescript.wordpress.com/2008/10/27/vbscript-the-dateserial-function/</link>
		<comments>http://writescript.wordpress.com/2008/10/27/vbscript-the-dateserial-function/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 17:36:16 +0000</pubDate>
		<dc:creator>programmervb</dc:creator>
				<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://writescript.wordpress.com/?p=54</guid>
		<description><![CDATA[The DateSerial function returns a Variant of subtype Date for a specified year, month, and day. Syntax DateSerial(year,month,day) Parameter Description year Required. A number between 100 and 9999, or a numeric expression. Values between 0 and 99 are interpreted as the years 1900–1999. For all other year arguments, use a complete four-digit year month Required. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=writescript.wordpress.com&amp;blog=4505306&amp;post=54&amp;subd=writescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The DateSerial function returns a Variant of subtype Date for a specified  year, month, and day.</p>
<h3>Syntax</h3>
<table class="ex" border="1" cellspacing="0" cellpadding="3" width="100%">
<tbody>
<tr>
<td>
<pre>DateSerial(year,month,day)</pre>
</td>
</tr>
</tbody>
</table>
<table class="ex" border="1" cellspacing="0" cellpadding="3" width="100%">
<tbody>
<tr>
<th width="20%" align="left" valign="top">Parameter</th>
<th width="80%" align="left" valign="top">Description</th>
</tr>
<tr>
<td valign="top">year</td>
<td valign="top">Required. A number between 100 and 9999, or a numeric      expression. Values between 0 and 99 are interpreted as the years 1900–1999.      For all other year arguments, use a complete four-digit year</td>
</tr>
<tr>
<td valign="top">month</td>
<td valign="top">Required. Any numeric expression</td>
</tr>
<tr>
<td valign="top">day</td>
<td valign="top">Required. Any numeric expression</td>
</tr>
</tbody>
</table>
<h3>Example 1</h3>
<pre>document.write(DateSerial(1996,2,3) &amp; "&lt;br /&gt;")
document.write(DateSerial(1990-20,9-2,1-1))</pre>
<pre>Output:</pre>
<pre>2/3/1996
6/30/1970</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/writescript.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/writescript.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/writescript.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/writescript.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/writescript.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/writescript.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/writescript.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/writescript.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/writescript.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/writescript.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/writescript.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/writescript.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/writescript.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/writescript.wordpress.com/54/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=writescript.wordpress.com&amp;blog=4505306&amp;post=54&amp;subd=writescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://writescript.wordpress.com/2008/10/27/vbscript-the-dateserial-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2674707c280c919927848f4ac76e810e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ed</media:title>
		</media:content>
	</item>
		<item>
		<title>VBScript DateValue Function</title>
		<link>http://writescript.wordpress.com/2008/10/27/vbscript-datevalue-function/</link>
		<comments>http://writescript.wordpress.com/2008/10/27/vbscript-datevalue-function/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 17:31:44 +0000</pubDate>
		<dc:creator>programmervb</dc:creator>
				<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://writescript.wordpress.com/?p=52</guid>
		<description><![CDATA[The DateValue function returns a type Date. Note: If the year part of date is omitted this function will use the current year from the computer&#8217;s system date. Note: If the date parameter includes time information it will not be returned. However, if date includes invalid time information, a run-time error will occur. Syntax DateValue(date) [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=writescript.wordpress.com&amp;blog=4505306&amp;post=52&amp;subd=writescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The DateValue function returns a type Date.</p>
<p><strong>Note:</strong> If the year part of date is omitted this function will use the  current year from the computer&#8217;s system date.</p>
<p><strong>Note:</strong> If the date parameter includes time information it will not be  returned. However, if date includes invalid time information, a run-time error  will occur.</p>
<h3>Syntax</h3>
<table class="ex" border="1" cellspacing="0" cellpadding="3" width="100%">
<tbody>
<tr>
<td>
<pre>DateValue(date)</pre>
</td>
</tr>
</tbody>
</table>
<table class="ex" border="1" cellspacing="0" cellpadding="3" width="100%">
<tbody>
<tr>
<th width="20%" align="left" valign="top">Parameter</th>
<th width="80%" align="left" valign="top">Description</th>
</tr>
<tr>
<td valign="top">date</td>
<td valign="top">Required. A date from January 1, 100 through December      31, 9999 or any expression that can represent a date, a time, or both a date      and time</td>
</tr>
</tbody>
</table>
<h3>Example 1</h3>
<pre>document.write(DateValue("31-Jan-02") &amp; "&lt;br /&gt;")
document.write(DateValue("31-Jan") &amp; "&lt;br /&gt;")
document.write(DateValue("31-Jan-02 2:39:49 AM"))</pre>
<pre>Output:</pre>
<pre>1/31/2002
1/31/2002
1/31/2002</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/writescript.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/writescript.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/writescript.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/writescript.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/writescript.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/writescript.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/writescript.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/writescript.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/writescript.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/writescript.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/writescript.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/writescript.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/writescript.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/writescript.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=writescript.wordpress.com&amp;blog=4505306&amp;post=52&amp;subd=writescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://writescript.wordpress.com/2008/10/27/vbscript-datevalue-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2674707c280c919927848f4ac76e810e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ed</media:title>
		</media:content>
	</item>
		<item>
		<title>VBScript DatePart Function</title>
		<link>http://writescript.wordpress.com/2008/10/27/vbscript-datepart-function/</link>
		<comments>http://writescript.wordpress.com/2008/10/27/vbscript-datepart-function/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 17:31:04 +0000</pubDate>
		<dc:creator>programmervb</dc:creator>
				<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://writescript.wordpress.com/?p=50</guid>
		<description><![CDATA[The DatePart function returns the specified part of a given date. Syntax DatePart(interval,date[,firstdayofweek[,firstweekofyear]]) Parameter Description interval Required. The interval of time to return.Can take the following values: yyyy &#8211; Year q &#8211; Quarter m &#8211; Month y &#8211; Day of year d &#8211; Day w &#8211; Weekday ww &#8211; Week of year h &#8211; Hour [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=writescript.wordpress.com&amp;blog=4505306&amp;post=50&amp;subd=writescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The DatePart function returns the specified part of a given date.</p>
<h3>Syntax</h3>
<table class="ex" border="1" cellspacing="0" cellpadding="3" width="100%">
<tbody>
<tr>
<td>
<pre>DatePart(interval,date[,firstdayofweek[,firstweekofyear]])</pre>
</td>
</tr>
</tbody>
</table>
<table class="ex" border="1" cellspacing="0" cellpadding="3" width="100%">
<tbody>
<tr>
<th width="20%" align="left" valign="top">Parameter</th>
<th width="80%" align="left" valign="top">Description</th>
</tr>
<tr>
<td valign="top">interval</td>
<td valign="top">Required. The interval of time to return.Can take the      following values:</p>
<ul>
<li>yyyy &#8211; Year</li>
<li>q &#8211; Quarter</li>
<li>m &#8211; Month</li>
<li>y &#8211; Day of year</li>
<li>d &#8211; Day</li>
<li>w &#8211; Weekday</li>
<li>ww &#8211; Week of year</li>
<li>h &#8211; Hour</li>
<li>n &#8211; Minute</li>
<li>s &#8211; Second</li>
</ul>
</td>
</tr>
<tr>
<td valign="top">date</td>
<td valign="top">Required. Date expression to evaluate</td>
</tr>
<tr>
<td valign="top">firstdayofweek</td>
<td valign="top">Optional. Specifies the day of the week.Can take the      following values:</p>
<ul>
<li>0 = vbUseSystemDayOfWeek &#8211; Use National Language Support (NLS) API        setting</li>
<li>1 = vbSunday &#8211; Sunday (default)</li>
<li>2 = vbMonday &#8211; Monday</li>
<li>3 = vbTuesday &#8211; Tuesday</li>
<li>4 = vbWednesday &#8211; Wednesday</li>
<li>5 = vbThursday &#8211; Thursday</li>
<li>6 = vbFriday &#8211; Friday</li>
<li>7 = vbSaturday &#8211; Saturday</li>
</ul>
</td>
</tr>
<tr>
<td valign="top">firstweekofyear</td>
<td valign="top">Optional. Specifies the first week of the year.Can      take the following values:</p>
<ul>
<li>0 = vbUseSystem &#8211; Use National Language Support (NLS) API setting</li>
<li>1 = vbFirstJan1 &#8211; Start with the week in which January 1 occurs        (default)</li>
<li>2 = vbFirstFourDays &#8211; Start with the week that has at least four days        in the new year</li>
<li>3 = vbFirstFullWeek &#8211; Start with the first full week of the new year</li>
</ul>
</td>
</tr>
</tbody>
</table>
<h3>Example 1</h3>
<table class="ex" border="1" cellspacing="0" cellpadding="3" width="100%">
<tbody>
<tr>
<td>
<pre>document.write(Date &amp; "&lt;br /&gt;")
document.write(DatePart("d",Date))</pre>
<pre>Output:</pre>
<pre>1/14/2002
14</pre>
</td>
</tr>
</tbody>
</table>
<h3>Example 2</h3>
<pre>document.write(Date &amp; "&lt;br /&gt;")
document.write(DatePart("w",Date))</pre>
<pre>Output:</pre>
<pre>1/14/2002
2</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/writescript.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/writescript.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/writescript.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/writescript.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/writescript.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/writescript.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/writescript.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/writescript.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/writescript.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/writescript.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/writescript.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/writescript.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/writescript.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/writescript.wordpress.com/50/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=writescript.wordpress.com&amp;blog=4505306&amp;post=50&amp;subd=writescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://writescript.wordpress.com/2008/10/27/vbscript-datepart-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2674707c280c919927848f4ac76e810e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ed</media:title>
		</media:content>
	</item>
		<item>
		<title>VBScript DateDiff Function</title>
		<link>http://writescript.wordpress.com/2008/10/27/vbscript-datediff-function/</link>
		<comments>http://writescript.wordpress.com/2008/10/27/vbscript-datediff-function/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 17:26:53 +0000</pubDate>
		<dc:creator>programmervb</dc:creator>
				<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://writescript.wordpress.com/?p=48</guid>
		<description><![CDATA[The DateDiff function returns the number of intervals between two dates. Syntax DateDiff(interval,date1,date2[,firstdayofweek[,firstweekofyear]]) Parameter Description interval Required. The interval you want to use to calculate the differences between date1 and date2Can take the following values: yyyy &#8211; Year q &#8211; Quarter m &#8211; Month y &#8211; Day of year d &#8211; Day w &#8211; Weekday [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=writescript.wordpress.com&amp;blog=4505306&amp;post=48&amp;subd=writescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The DateDiff function returns the number of intervals between two dates.</p>
<h3>Syntax</h3>
<table class="ex" border="1" cellspacing="0" cellpadding="3" width="100%">
<tbody>
<tr>
<td>
<pre>DateDiff(interval,date1,date2[,firstdayofweek[,firstweekofyear]])</pre>
</td>
</tr>
</tbody>
</table>
<table class="ex" border="1" cellspacing="0" cellpadding="3" width="100%">
<tbody>
<tr>
<th width="20%" align="left" valign="top">Parameter</th>
<th width="80%" align="left" valign="top">Description</th>
</tr>
<tr>
<td valign="top">interval</td>
<td valign="top">Required. The interval you want to use to calculate the      differences between date1 and date2Can take the      following values:</p>
<ul>
<li>yyyy &#8211; Year</li>
<li>q &#8211; Quarter</li>
<li>m &#8211; Month</li>
<li>y &#8211; Day of year</li>
<li>d &#8211; Day</li>
<li>w &#8211; Weekday</li>
<li>ww &#8211; Week of year</li>
<li>h &#8211; Hour</li>
<li>n &#8211; Minute</li>
<li>s &#8211; Second</li>
</ul>
</td>
</tr>
<tr>
<td valign="top">date1,date2</td>
<td valign="top">Required. Date expressions. Two dates you want to use in      the calculation</td>
</tr>
<tr>
<td valign="top">firstdayofweek</td>
<td valign="top">Optional. Specifies the day of the week.Can take the      following values:</p>
<ul>
<li>0 = vbUseSystemDayOfWeek &#8211; Use National Language Support (NLS) API        setting</li>
<li>1 = vbSunday &#8211; Sunday (default)</li>
<li>2 = vbMonday &#8211; Monday</li>
<li>3 = vbTuesday &#8211; Tuesday</li>
<li>4 = vbWednesday &#8211; Wednesday</li>
<li>5 = vbThursday &#8211; Thursday</li>
<li>6 = vbFriday &#8211; Friday</li>
<li>7 = vbSaturday &#8211; Saturday</li>
</ul>
</td>
</tr>
<tr>
<td valign="top">firstweekofyear</td>
<td valign="top">Optional. Specifies the first week of the year.Can      take the following values:</p>
<ul>
<li>0 = vbUseSystem &#8211; Use National Language Support (NLS) API setting</li>
<li>1 = vbFirstJan1 &#8211; Start with the week in which January 1 occurs        (default)</li>
<li>2 = vbFirstFourDays &#8211; Start with the week that has at least four days        in the new year</li>
<li>3 = vbFirstFullWeek &#8211; Start with the first full week of the new year</li>
</ul>
</td>
</tr>
</tbody>
</table>
<h3>Example 1</h3>
<table class="ex" border="1" cellspacing="0" cellpadding="3" width="100%">
<tbody>
<tr>
<td>
<pre>document.write(Date &amp; "&lt;br /&gt;")
document.write(DateDiff("m",Date,"12/31/2002") &amp; "&lt;br /&gt;")
document.write(DateDiff("d",Date,"12/31/2002") &amp; "&lt;br /&gt;")
document.write(DateDiff("n",Date,"12/31/2002"))</pre>
<pre>Output:</pre>
<pre>1/14/2002
11
351
505440</pre>
</td>
</tr>
</tbody>
</table>
<h3>Example 2</h3>
<table class="ex" border="1" cellspacing="0" cellpadding="3" width="100%">
<tbody>
<tr>
<td>
<pre>document.write(Date &amp; "&lt;br /&gt;")
'Note that in the code below
'is date1&gt;date2
document.write(DateDiff("d","12/31/2002",Date))</pre>
<pre>Output:</pre>
<pre>1/14/2002
-351</pre>
</td>
</tr>
</tbody>
</table>
<h3>Example 3</h3>
<table class="ex" border="1" cellspacing="0" cellpadding="3" width="100%">
<tbody>
<tr>
<td>
<pre>'How many weeks (start on Monday),
'are left between the current date and 10/10/2002
document.write(Date &amp; "&lt;br /&gt;")
document.write(DateDiff("w",Date,"10/10/2002",vbMonday))</pre>
<pre>Output:</pre>
<pre>1/14/2002
38</pre>
</td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/writescript.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/writescript.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/writescript.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/writescript.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/writescript.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/writescript.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/writescript.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/writescript.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/writescript.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/writescript.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/writescript.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/writescript.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/writescript.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/writescript.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=writescript.wordpress.com&amp;blog=4505306&amp;post=48&amp;subd=writescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://writescript.wordpress.com/2008/10/27/vbscript-datediff-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2674707c280c919927848f4ac76e810e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ed</media:title>
		</media:content>
	</item>
		<item>
		<title>Change Floppy Serial Numbers</title>
		<link>http://writescript.wordpress.com/2008/10/27/change-floppy-serial-numbers/</link>
		<comments>http://writescript.wordpress.com/2008/10/27/change-floppy-serial-numbers/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 17:12:13 +0000</pubDate>
		<dc:creator>programmervb</dc:creator>
				<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://writescript.wordpress.com/2008/10/27/change-floppy-serial-numbers/</guid>
		<description><![CDATA[Use DEBUG to change data on the disk This example shows how to &#8220;turn off&#8221; the serial number display for the disk in the A: drive. The digit shown in blue on the &#8220;E&#8221; command is the one that toggles display of the serial number. C:\&#62;DEBUG -L 0 0 0 1 -E 26 00 -W [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=writescript.wordpress.com&amp;blog=4505306&amp;post=47&amp;subd=writescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Use DEBUG to change data on the disk</p>
<p>This example shows how to &#8220;turn off&#8221; the serial number display for the disk in the A: drive. The digit shown in blue on the &#8220;E&#8221; command is the one that toggles display of the serial number.<br />
<strong><tt>C:\&gt;DEBUG</tt></strong><br />
<strong><tt>-L 0 0 0 1</tt></strong><br />
<strong><tt>-E 26 <span style="color:#0000ff;">00</span></tt></strong><br />
<strong><tt>-W 0 0 0 1</tt></strong><br />
<strong><tt>-Q</tt></strong></p>
<p><strong><tt>C:\&gt;DIR A:</tt></strong></p>
<p><strong><tt>Volume in drive A has no label</tt></strong><br />
<strong><tt>Directory of A:\</tt></strong></p>
<p>This example shows how to set the serial number for the disk in the A: drive to any value. Notice the numbers you enter (in red) are mirrored from the serial number you&#8217;ll get.<br />
<strong><tt>C:\&gt;debug</tt></strong><br />
<strong><tt>-L 0 0 0 1</tt></strong><br />
<strong><tt>-E 26 <span style="color:#0000ff;">29</span> <span style="color:#ff0080;">78 56 34 12</span></tt></strong><br />
<strong><tt>-W 0 0 0 1</tt></strong><br />
<strong><tt>-Q</tt></strong></p>
<p><strong><tt>C:\&gt;DIR A:</tt></strong></p>
<p><strong><tt>Volume in drive A has no label</tt></strong><br />
<strong><tt>Volume Serial Number is <span style="color:#ff0080;">1234-5678</span></tt></strong><br />
<strong><tt>Directory of A:\</tt></strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/writescript.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/writescript.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/writescript.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/writescript.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/writescript.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/writescript.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/writescript.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/writescript.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/writescript.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/writescript.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/writescript.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/writescript.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/writescript.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/writescript.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=writescript.wordpress.com&amp;blog=4505306&amp;post=47&amp;subd=writescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://writescript.wordpress.com/2008/10/27/change-floppy-serial-numbers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2674707c280c919927848f4ac76e810e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ed</media:title>
		</media:content>
	</item>
		<item>
		<title>Display Error Levels</title>
		<link>http://writescript.wordpress.com/2008/10/27/display-error-levels/</link>
		<comments>http://writescript.wordpress.com/2008/10/27/display-error-levels/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 17:10:43 +0000</pubDate>
		<dc:creator>programmervb</dc:creator>
				<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://writescript.wordpress.com/?p=45</guid>
		<description><![CDATA[Use the undocumented /Z option on COMMAND N:\temp&#62;command /z Microsoft(R) Windows 95  (C)Copyright Microsoft Corp 1981-1995.  Return code (ERRORLEVEL): 0  WARNING: Reloaded COMMAND.COM transient N:\temp&#62;echo test&#124;find "test"&#62;nul  Return code (ERRORLEVEL): 0 N:\temp&#62;echo qwerty&#124;find "test"&#62;nul  Return code (ERRORLEVEL): 1 N:\temp&#62; exit N:\temp&#62;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=writescript.wordpress.com&amp;blog=4505306&amp;post=45&amp;subd=writescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<pre>Use the undocumented /Z option on COMMAND
<strong><tt>N:\temp&gt;command /z</tt></strong></pre>
<pre><strong><tt>Microsoft(R) Windows 95 
(C)Copyright Microsoft Corp 1981-1995. 
Return code (ERRORLEVEL): 0 
WARNING: Reloaded COMMAND.COM transient</tt></strong></pre>
<pre><strong><tt>N:\temp&gt;echo test|find "test"&gt;nul 
Return code (ERRORLEVEL): 0</tt></strong></pre>
<pre><strong><tt>N:\temp&gt;echo qwerty|find "test"&gt;nul 
Return code (ERRORLEVEL): 1</tt></strong></pre>
<pre><strong><tt>N:\temp&gt; exit

N:\temp&gt;</tt></strong></pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/writescript.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/writescript.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/writescript.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/writescript.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/writescript.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/writescript.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/writescript.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/writescript.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/writescript.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/writescript.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/writescript.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/writescript.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/writescript.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/writescript.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=writescript.wordpress.com&amp;blog=4505306&amp;post=45&amp;subd=writescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://writescript.wordpress.com/2008/10/27/display-error-levels/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2674707c280c919927848f4ac76e810e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ed</media:title>
		</media:content>
	</item>
		<item>
		<title>Display Windows Revision</title>
		<link>http://writescript.wordpress.com/2008/10/27/display-windows-revision/</link>
		<comments>http://writescript.wordpress.com/2008/10/27/display-windows-revision/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 17:09:46 +0000</pubDate>
		<dc:creator>programmervb</dc:creator>
				<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://writescript.wordpress.com/?p=43</guid>
		<description><![CDATA[Use the undocumented /R option on the VER command. C:\&#62;ver Windows 95. [Version 4.00.950] C:\&#62;ver /r Windows 95. [Version 4.00.950]  Revision A DOS is in HMA<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=writescript.wordpress.com&amp;blog=4505306&amp;post=43&amp;subd=writescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<pre>Use the undocumented /R option on the VER command.
<strong><tt>C:\&gt;ver
Windows 95. [Version 4.00.950]
C:\&gt;ver /r
Windows 95. [Version 4.00.950] 
Revision A
DOS is in HMA</tt></strong></pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/writescript.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/writescript.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/writescript.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/writescript.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/writescript.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/writescript.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/writescript.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/writescript.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/writescript.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/writescript.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/writescript.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/writescript.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/writescript.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/writescript.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=writescript.wordpress.com&amp;blog=4505306&amp;post=43&amp;subd=writescript&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://writescript.wordpress.com/2008/10/27/display-windows-revision/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2674707c280c919927848f4ac76e810e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ed</media:title>
		</media:content>
	</item>
	</channel>
</rss>
