This lesson is where the use of variables starts to make sense. In this lesson, you will be taught about two of the most useful commands in batch, the 'if ' and 'goto' command. The 'if ' command has many different syntaxes and uses so I will only be teaching a few in this lesson. The 'if ' command is used to compare two strings and carry out an action based on the result. This is how the subsection of the command we are learning today is used: if "string1" comparison "string2" command 'string1' and 'string2' can be replaced by any string. 'comparison' is replaced by one of the six comparison operators you will learn about. Command can be replaced by any command you want to add at the end. Here is a sample code: set /p password=Enter the password: if "%password%" EQU "12345" echo Correct password The six comparison operators are: ...