The set command does not take spaces. The proper syntax would be:
set tt=name
What you have done in your example is set an environment variable tt<space>. With that in mind, you can try this:
echo %tt %
and see your output.
The set command does not take spaces. The proper syntax would be:
set tt=name
What you have done in your example is set an environment variable tt<space>. With that in mind, you can try this:
echo %tt %
and see your output.