Here is my batch script file. There are 2 scenarios
- Scenario 1
@echo off
set name=
set /P TypeName=Name: %=%
if %TypeName% == "abcd" goto correctName
else goto wrongName
:correctName
echo Correct Name
:end
:wrongName
echo Wrong Name
:end
When i type abcd as the input, i get 'else' is not recognized as an internal or external command,operable program or batch file
Wrong Name
- Scenario 2
@echo off
set name=
set /P TypeName=Name: %=%
if %TypeName% EQA "abcd" goto correctName
if %TypeName% NEQ "abcd" goto wrongName
:correctName
echo Correct Name
:end
:wrongName
echo Wrong Name
:end
When i type abcd as the input, i get EQA was unexpected at this time.
Is there something wrong in my script?Am I missing something here
IF NOT something == somethingelse …. – Andriy M Aug 5 '11 at 9:52