I am using xp. I am facing problem in using Variables.
I am using following code
@echo off set var = "srting"
When i check the value of var using %
set %var%
Environment variable %var% not defined
Anyone help ...
|
|
|
If you want to execute different code path based on file content, this should work for you:
However, if the file name contains ' |
|||||||||||
|
|
Take out the space before and after the equals sign; IIRC, I think that can cause problems. Also, you can't put more than one command on a line like that, you have to separate it with ampersands, or instead, change it to this:
Edit: You said you try:
but %var% is a value, not a variable name. Is that really what you intended? |
|||||||||
|
|
set %var% Environment variable %var% not defined
.... that should give you an output "srting" on next line.
|
|||
|
|