iImage Information

Conditional execution means that a command can only be issued under a certain condition. You will also learn in this instructable how to make a single line batch file, and how to organize and categorize a large, confusing batch file.
Step 1Do's and Do not's
iImage Information

Please don't use batch programing if you don't know how to use it, because you can really mess up your computer! I recommend only following this instructible if you are advanced at batch. If your learning batch, or basic at it, you don't really have a need for this.If you have any questions, I suggest learning batch better because this is not hard to understand.
Refer to Festive Batching for this
@echo off
echo hi would you like to kill your mum Y/N
set/p "kill=>"
if %kill%==Y goto y
if %kill%==y goto y
if %kill%==N goto n
if %kill%==n goto n
:y
echo your mum is dead
:n
echo your mum is dead, not your fault
symbol if you don`t want the >, >>, &, && and || to do their thing. For example:
You must go like this:
and... It worked!