i have the following in a bat file:

@echo off

Set /P _environment = Please Enter Environment [d] for Development or [a] for Acceptance:

IF ((%_environment% EQU "a") OR (%_environment% EQU "d"))
(goto sub_write_files)
ELSE
(goto end)


:sub_write_files
xcopy script_temp\* \\CHU-%_environment%101\CHU\scripts /D /E /C /R /I /K /Y /S
:end
echo %_environment% Done

The logic seems well formed to me , but possibly it is not because the sub_write_files sub routine every time that i fire this command. I am assuming that the flaw is in the conditional logic. Thank you.

link|improve this question

1  
+1 to additionally offset your downvote. I don't see a reason why it was downvoted in the first place. It's a valid question. – Mechaflash Feb 2 at 14:24
@Mechaflash thank you, my thoughts as well! – some_bloody_fool Feb 2 at 21:23
feedback

2 Answers

up vote 2 down vote accepted

You need to brush up on your batch syntax. Help is available for just about every command by typing either HELP command or command /? at a command prompt. For example, HELP IF will provide help on the IF command. Granted, the documentation is often incomplete and/or confusing, but it is a start.

You have lots of problems with your syntax as written. One of the most obvious is IF does not support any operators like AND, OR, XOR etc.

You can achieve the logic you were looking for with the following

@echo off

Set /P _environment = Please Enter Environment [d] for Development or [a] for Acceptance:

if "%_environment%" neq "a" if "%_environment%" neq "d" goto :end
:sub_write_files
echo xcopy script_temp\* \\CHU-%_environment%101\CHU\scripts /D /E /C /R /I /K /Y /S
:end
echo %_environment% Done

There are lots of potential improvements. For example, you might want to add the /I option to both IF statements so that case does not matter. Or you might want to loop back and try again instead of ending if an invalid value is entered.

link|improve this answer
Thank you, i do need to brush up on the syntax. I wish i wasn't downvoted just for asking a question – some_bloody_fool Feb 1 at 22:55
@some_bloody_fool - That was not me that down voted the question. – dbenham Feb 1 at 23:47
feedback

The main problem is the complete wrong syntax of your code.

An IF-Statement only accepts one condition, you can not combine them with OR or AND.
It's not allowed to surrend the condition with parenthesis.
A beginning block has to start on the same line, also for the ELSE clause.
A set ... varname= with a space between varname and the equal sign creates a variable named varname<space>.

But the rest of your code should work ...

The logic seems well formed to me

Probably a simple IF /? would correct this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.