I notice in most scripts, the two are usually in the same line as so:

SETLOCAL ENABLEDELAYEDEXPANSION

Are the two in fact separate commands and can be written on separate lines?

Will setting ENABLEDELAYEDEXPANSION have an adverse effect on a script if it is set on the first lines of the script and not disabled until the end of the script?

TANXSOMUCH!

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

ENABLEDELAYEDEXPANSION is a paramater passed to the SETLOCAL command (look at setlocal /?)

Its effect lives for the duration of the script, or an ENDLOCAL:

When the end of a batch script is reached, an implied ENDLOCAL is executed for any outstanding SETLOCAL commands issued by that batch script.

link|improve this answer
what about the 2nd part to the question? – Mechaflash Jul 13 '11 at 16:38
Well it would only have an adverse effect if you enabled it, then wrote some code that behaved differently were it not on – Alex K. Jul 13 '11 at 17:32
feedback

The ENABLEDELAYEDEXPANSION part is REQUIRED in certain programs that use delayed expansion, that is, that takes the value of variables that were modified inside IF or FOR commands by enclosing their names in exclamation-marks.

If you enable this expansion in a script that does not require it, the script behaves different only if it contains names enclosed in exclamation-marks !LIKE! !THESE!. Usually the name is just erased, but if a variable with the same name exist by chance, then the result is unpredictable and depends on the value of such variable and the place where it appears.

The SETLOCAL part is REQUIRED in just a few specialized (recursive) programs, but is commonly used when you want to be sure to not modify any existent variable with the same name by chance or if you want to automatically delete all the variables used in your program. However, because there is not a separate command to enable the delayed expansion, programs that require this must also include the SETLOCAL part.

I hope it helps...

Antonio

link|improve this answer
With EnableDelayedExpansion you got even problems if your text contains only a single ! like echo Hello! and with a exclamation mark in a line you got also problems with carets echo "Caret^" is gone! – jeb Jul 22 '11 at 11:32
feedback

Your Answer

 
or
required, but never shown

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