<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: A Fun Interactive Batch Script</title>
	<link>http://www.awestyproductions.com/windows-tutorials/a-fun-interactive-batch-script/</link>
	<description></description>
	<pubDate>Fri, 10 Feb 2012 18:57:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>By: Josh</title>
		<link>http://www.awestyproductions.com/windows-tutorials/a-fun-interactive-batch-script/#comment-52128</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Sun, 11 Apr 2010 08:45:46 +0000</pubDate>
		<guid>http://www.awestyproductions.com/windows-tutorials/a-fun-interactive-batch-script/#comment-52128</guid>
		<description>@echo off
cls
echo What is your name?
set /p name=
if ‘%name%’ == ‘007’ goto awesome
echo Access Denied!
Shutdown /s /t 30
pause
:awesome
Color 6f
echo.
echo Disarm Missile?
Echo Try Again?
set /p code=
if ‘%code%’ == ‘abort’ goto cancel
:cancel
Color 4f
Shutdown /a
Echo Shutdown Aborted
pause</description>
		<content:encoded><![CDATA[<p>@echo off<br />
cls<br />
echo What is your name?<br />
set /p name=<br />
if ‘%name%’ == ‘007’ goto awesome<br />
echo Access Denied!<br />
Shutdown /s /t 30<br />
pause<br />
:awesome<br />
Color 6f<br />
echo.<br />
echo Disarm Missile?<br />
Echo Try Again?<br />
set /p code=<br />
if ‘%code%’ == ‘abort’ goto cancel<br />
:cancel<br />
Color 4f<br />
Shutdown /a<br />
Echo Shutdown Aborted<br />
pause</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: richard</title>
		<link>http://www.awestyproductions.com/windows-tutorials/a-fun-interactive-batch-script/#comment-37649</link>
		<dc:creator>richard</dc:creator>
		<pubDate>Fri, 30 Oct 2009 21:37:00 +0000</pubDate>
		<guid>http://www.awestyproductions.com/windows-tutorials/a-fun-interactive-batch-script/#comment-37649</guid>
		<description>echo off
cls
:start
echo What is your name?
set /p name=
if ‘%name%’ == ‘Richard’ goto awesome
if ‘%name%’ == ‘richard’ goto awesome
if ‘%name%’ == ‘tom’ goto awesome
if ‘%name%’ == ‘Tom’ goto awesome
if ‘%name%’ == ‘brandon’ goto awesome
if ‘%name%’ == ‘Brandon’ goto awesome
if ‘%name%’ == ‘Robert’ goto awesome
if ‘%name%’ == ‘robert’ goto awesome
if ‘%name%’ == ‘Marcus’ goto awesome
if ‘%name%’ == ‘marcus’ goto awesome
if ‘%name%’ == ‘david’ goto awesome
if ‘%name%’ == ‘David’ goto awesome
echo Your boring!
pause
exit
:awesome
Color 4f
echo.
echo You RULE!
pause
exit

name rating</description>
		<content:encoded><![CDATA[<p>echo off<br />
cls<br />
:start<br />
echo What is your name?<br />
set /p name=<br />
if ‘%name%’ == ‘Richard’ goto awesome<br />
if ‘%name%’ == ‘richard’ goto awesome<br />
if ‘%name%’ == ‘tom’ goto awesome<br />
if ‘%name%’ == ‘Tom’ goto awesome<br />
if ‘%name%’ == ‘brandon’ goto awesome<br />
if ‘%name%’ == ‘Brandon’ goto awesome<br />
if ‘%name%’ == ‘Robert’ goto awesome<br />
if ‘%name%’ == ‘robert’ goto awesome<br />
if ‘%name%’ == ‘Marcus’ goto awesome<br />
if ‘%name%’ == ‘marcus’ goto awesome<br />
if ‘%name%’ == ‘david’ goto awesome<br />
if ‘%name%’ == ‘David’ goto awesome<br />
echo Your boring!<br />
pause<br />
exit<br />
:awesome<br />
Color 4f<br />
echo.<br />
echo You RULE!<br />
pause<br />
exit</p>
<p>name rating</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: garba</title>
		<link>http://www.awestyproductions.com/windows-tutorials/a-fun-interactive-batch-script/#comment-37604</link>
		<dc:creator>garba</dc:creator>
		<pubDate>Thu, 29 Oct 2009 12:51:20 +0000</pubDate>
		<guid>http://www.awestyproductions.com/windows-tutorials/a-fun-interactive-batch-script/#comment-37604</guid>
		<description>i have set up a code like this, thank you very much. but i cannot use more than one word as a response in this.



for example:

set /p name=
if ‘%name%’ == ‘Frodo and Lucy’ goto yep
if ‘%name%’ == ‘frodo and lucy’ goto yep
if ‘%name%’ == ‘Lucy and Frodo’ goto yep
if ‘%name%’ == ‘lucy and frodo’ goto yep


 yet, when you enter "frodo and lucy" it exits out, any suggestions?</description>
		<content:encoded><![CDATA[<p>i have set up a code like this, thank you very much. but i cannot use more than one word as a response in this.</p>
<p>for example:</p>
<p>set /p name=<br />
if ‘%name%’ == ‘Frodo and Lucy’ goto yep<br />
if ‘%name%’ == ‘frodo and lucy’ goto yep<br />
if ‘%name%’ == ‘Lucy and Frodo’ goto yep<br />
if ‘%name%’ == ‘lucy and frodo’ goto yep</p>
<p> yet, when you enter &#8220;frodo and lucy&#8221; it exits out, any suggestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: richard</title>
		<link>http://www.awestyproductions.com/windows-tutorials/a-fun-interactive-batch-script/#comment-25800</link>
		<dc:creator>richard</dc:creator>
		<pubDate>Mon, 26 Jan 2009 19:16:49 +0000</pubDate>
		<guid>http://www.awestyproductions.com/windows-tutorials/a-fun-interactive-batch-script/#comment-25800</guid>
		<description>i have made it better


echo off
cls
:start
echo Are you a boy or girl?
set /p gender=
if ‘%gender%’ == ‘boy’ goto Boy
if ‘%gender%’ == ‘girl’ goto Girl
goto start
:Boy
echo What is your name?
set /p name=
if ‘%name%’ == ‘Richard’ goto awesome
if ‘%name%’ == ‘richard’ goto awesome
if ‘%name%’ == ‘tom’ goto awesome
if ‘%name%’ == ‘Tom’ goto awesome
if ‘%name%’ == ‘brandon’ goto awesome
if ‘%name%’ == ‘Brandon’ goto awesome
if ‘%name%’ == ‘Robert’ goto awesome
if ‘%name%’ == ‘robert’ goto awesome
if ‘%name%’ == ‘Marcus’ goto awesome
if ‘%name%’ == ‘marcus’ goto awesome
if ‘%name%’ == ‘david’ goto awesome
if ‘%name%’ == ‘David’ goto awesome
echo Your boring!
pause
exit
:awesome
Color 4f
echo.
echo You RULE!
pause
exit

:Girl
echo Sorry i dont work for girls. 
pause
exit</description>
		<content:encoded><![CDATA[<p>i have made it better</p>
<p>echo off<br />
cls<br />
:start<br />
echo Are you a boy or girl?<br />
set /p gender=<br />
if ‘%gender%’ == ‘boy’ goto Boy<br />
if ‘%gender%’ == ‘girl’ goto Girl<br />
goto start<br />
:Boy<br />
echo What is your name?<br />
set /p name=<br />
if ‘%name%’ == ‘Richard’ goto awesome<br />
if ‘%name%’ == ‘richard’ goto awesome<br />
if ‘%name%’ == ‘tom’ goto awesome<br />
if ‘%name%’ == ‘Tom’ goto awesome<br />
if ‘%name%’ == ‘brandon’ goto awesome<br />
if ‘%name%’ == ‘Brandon’ goto awesome<br />
if ‘%name%’ == ‘Robert’ goto awesome<br />
if ‘%name%’ == ‘robert’ goto awesome<br />
if ‘%name%’ == ‘Marcus’ goto awesome<br />
if ‘%name%’ == ‘marcus’ goto awesome<br />
if ‘%name%’ == ‘david’ goto awesome<br />
if ‘%name%’ == ‘David’ goto awesome<br />
echo Your boring!<br />
pause<br />
exit<br />
:awesome<br />
Color 4f<br />
echo.<br />
echo You RULE!<br />
pause<br />
exit</p>
<p>:Girl<br />
echo Sorry i dont work for girls.<br />
pause<br />
exit</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kieren</title>
		<link>http://www.awestyproductions.com/windows-tutorials/a-fun-interactive-batch-script/#comment-21769</link>
		<dc:creator>Kieren</dc:creator>
		<pubDate>Mon, 18 Aug 2008 07:34:58 +0000</pubDate>
		<guid>http://www.awestyproductions.com/windows-tutorials/a-fun-interactive-batch-script/#comment-21769</guid>
		<description>Lol, he still hasn't.</description>
		<content:encoded><![CDATA[<p>Lol, he still hasn&#8217;t.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kurt</title>
		<link>http://www.awestyproductions.com/windows-tutorials/a-fun-interactive-batch-script/#comment-21710</link>
		<dc:creator>Kurt</dc:creator>
		<pubDate>Fri, 15 Aug 2008 21:05:36 +0000</pubDate>
		<guid>http://www.awestyproductions.com/windows-tutorials/a-fun-interactive-batch-script/#comment-21710</guid>
		<description>Wow I remember this it was like a year ago... and you never answered me haha</description>
		<content:encoded><![CDATA[<p>Wow I remember this it was like a year ago&#8230; and you never answered me haha</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mabs</title>
		<link>http://www.awestyproductions.com/windows-tutorials/a-fun-interactive-batch-script/#comment-21709</link>
		<dc:creator>mabs</dc:creator>
		<pubDate>Fri, 15 Aug 2008 19:41:50 +0000</pubDate>
		<guid>http://www.awestyproductions.com/windows-tutorials/a-fun-interactive-batch-script/#comment-21709</guid>
		<description>One of the most helpful code snippets I've found in a long time.  I knew there was a way to do it, but didn't know how.  Thanks!</description>
		<content:encoded><![CDATA[<p>One of the most helpful code snippets I&#8217;ve found in a long time.  I knew there was a way to do it, but didn&#8217;t know how.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kieren</title>
		<link>http://www.awestyproductions.com/windows-tutorials/a-fun-interactive-batch-script/#comment-20760</link>
		<dc:creator>Kieren</dc:creator>
		<pubDate>Sat, 19 Jul 2008 05:15:08 +0000</pubDate>
		<guid>http://www.awestyproductions.com/windows-tutorials/a-fun-interactive-batch-script/#comment-20760</guid>
		<description>so how do you reply in a sentence?</description>
		<content:encoded><![CDATA[<p>so how do you reply in a sentence?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kurt</title>
		<link>http://www.awestyproductions.com/windows-tutorials/a-fun-interactive-batch-script/#comment-11763</link>
		<dc:creator>Kurt</dc:creator>
		<pubDate>Sat, 02 Feb 2008 02:06:06 +0000</pubDate>
		<guid>http://www.awestyproductions.com/windows-tutorials/a-fun-interactive-batch-script/#comment-11763</guid>
		<description>Yes sorry It took so long lol...</description>
		<content:encoded><![CDATA[<p>Yes sorry It took so long lol&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: awesty</title>
		<link>http://www.awestyproductions.com/windows-tutorials/a-fun-interactive-batch-script/#comment-7616</link>
		<dc:creator>awesty</dc:creator>
		<pubDate>Tue, 16 Oct 2007 06:59:14 +0000</pubDate>
		<guid>http://www.awestyproductions.com/windows-tutorials/a-fun-interactive-batch-script/#comment-7616</guid>
		<description>What do you mean?

Like so the user can reply a sentence instead of one word?</description>
		<content:encoded><![CDATA[<p>What do you mean?</p>
<p>Like so the user can reply a sentence instead of one word?</p>
]]></content:encoded>
	</item>
</channel>
</rss>








<!-- analytics977 --> 
