Tagged Questions

1
vote
1answer
29 views

Batch: Returning a value from a SETLOCAL EnableDelayedExpansion

I wonder why this code does not work as expected: @ECHO off SET S1=HELLO SETLOCAL EnableDelayedExpansion SET S2=!S1! WORLD^^! ECHO !S2! ENDLOCAL & SET S1=!S2! ECHO %S1% PAUSE Output: HELLO ...
0
votes
2answers
651 views

Batch delayed expansion not working

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 ...