I'm trying to define and use a variable in a batch file. It looks like it should be simple:
@echo off
set location = "bob"
echo We're working with "%location%"
The output I get is the following:
We're working with ""
What's going on here? Why is my variable not being echo'd?
Question&Answers:os