Ok, I'm getting crazy and I don't know what else to do, I've tried several things and nothing is working.

Look at this sample code (test.cmd):

setlocal enabledelayedexpansion enableextensions
set VAR=before
if "%VAR%" == "before" (
    set VAR=after;
    if "%VAR%" == "after" @echo If you see this, it worked
)

This is the generated output:

D:\>ver

Microsoft Windows [Version 6.1.7600]

D:\>test.cmd

D:\>setlocal enabledelayedexpansion enableextensions

D:\>set VAR=before

D:\>if "before" == "before" (
set VAR=after;
 if "before" == "after"
)

D:\>

Am I doing something wrong?

This is just a test, the code I need uses variables too and needs delayed expansion, but it this simple test doesn't work the other wont work either (I've tried, I ended up with a simple example to test if it worked).

EDIT: New code and output:

test.cmd:

@echo off
setlocal enabledelayedexpansion enableextensions
set VAR=before
if "%VAR%" == "before" (
   set VAR=after;
   if "!VAR!" == "after" (
      echo It worked.
   ) else (
      echo It didn't work.
   )
)

Output:

D:\>test.cmd
It didn't work.

D:\>
link|improve this question
2  
Lose the semicolon in the line set VAR=after; and it should work – Andy Morris Nov 19 '09 at 13:03
That's it! A semicolon... my, what a rookie I am :) – Richard Nov 19 '09 at 13:39
feedback

2 Answers

up vote 4 down vote accepted

You have to use !var! for delayed expansion. %var% is always expanded on parse stage.

I.e., change your code to

setlocal enabledelayedexpansion enableextensions
set VAR=before
if "%VAR%" == "before" (
    set VAR=after
    if "!VAR!" == "after" @echo If you see this, it worked
)
link|improve this answer
Nope, in that case the output is "if "!VAR!" == "after"". – Richard Nov 19 '09 at 12:31
Don't worry about the commands you're seeing echoed the screen; the point of delayed expansion is that it's done after that. Put an @ECHO OFF at the top of your script and you'll see that it's working. – Dave Webb Nov 19 '09 at 12:44
Hmm... I don't think so, if it worked shouldn't I see "If you see this, it worked"? – Richard Nov 19 '09 at 12:55
feedback

dont use == , in batch you must use EQU

Example: if %bla% EQU %blub% echo same

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.