vote up 1 vote down star

Is there any way to enable execution-time variable expansion for cmd.exe (normally done by typing cmd /V:ON) without starting a new instance of cmd.exe?

Similarly, can other settings/flags be changed on the fly?

flag

2 Answers

vote up 4 vote down check

Try this:

setlocal enabledelayedexpansion

There's also

setlocal enableextensions

which is the equivalent of cmd /E:ON.

Reference: setlocal /?.

link|flag
vote up 0 vote down

Try

setlocal ENABLEDELAYEDEXPANSION
link|flag

Your Answer

Get an OpenID
or

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